Вы не можете выбрать более 25 тем Темы должны начинаться с буквы или цифры, могут содержать дефисы(-) и должны содержать не более 35 символов.

JitsiMeetViewDelegate.h 1.7KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162
  1. /*
  2. * Copyright @ 2017-present Atlassian Pty Ltd
  3. *
  4. * Licensed under the Apache License, Version 2.0 (the "License");
  5. * you may not use this file except in compliance with the License.
  6. * You may obtain a copy of the License at
  7. *
  8. * http://www.apache.org/licenses/LICENSE-2.0
  9. *
  10. * Unless required by applicable law or agreed to in writing, software
  11. * distributed under the License is distributed on an "AS IS" BASIS,
  12. * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
  13. * See the License for the specific language governing permissions and
  14. * limitations under the License.
  15. */
  16. @protocol JitsiMeetViewDelegate <NSObject>
  17. @optional
  18. /**
  19. * Called when a joining a conference was unsuccessful or when there was an
  20. * error while in a conference.
  21. *
  22. * The {@code data} dictionary contains an "error" key describing the error and
  23. * a {@code url} key with the conference URL.
  24. */
  25. - (void) conferenceFailed:(NSDictionary *)data;
  26. /**
  27. * Called when a conference was joined.
  28. *
  29. * The {@code data} dictionary contains a {@code url} key with the conference
  30. * URL.
  31. */
  32. - (void) conferenceJoined:(NSDictionary *)data;
  33. /**
  34. * Called when a conference was left.
  35. *
  36. * The {@code data} dictionary contains a {@code url} key with the conference
  37. * URL.
  38. */
  39. - (void) conferenceLeft:(NSDictionary *)data;
  40. /**
  41. * Called before a conference is joined.
  42. *
  43. * The {@code data} dictionary contains a {@code url} key with the conference
  44. * URL.
  45. */
  46. - (void) conferenceWillJoin:(NSDictionary *)data;
  47. /**
  48. * Called before a conference is left.
  49. *
  50. * The {@code data} dictionary contains a {@code url} key with the conference
  51. * URL.
  52. */
  53. - (void) conferenceWillLeave:(NSDictionary *)data;
  54. @end