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

JitsiMeetViewDelegate.h 1.9KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768
  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 `data` dictionary contains an `error` key describing the error and a
  23. * `url` key with the conference URL.
  24. */
  25. - (void)conferenceFailed:(NSDictionary *)data;
  26. /**
  27. * Called when a conference was joined.
  28. *
  29. * The `data` dictionary contains a `url` key with the conference URL.
  30. */
  31. - (void)conferenceJoined:(NSDictionary *)data;
  32. /**
  33. * Called when a conference was left.
  34. *
  35. * The `data` dictionary contains a `url` key with the conference URL.
  36. */
  37. - (void)conferenceLeft:(NSDictionary *)data;
  38. /**
  39. * Called before a conference is joined.
  40. *
  41. * The `data` dictionary contains a `url` key with the conference URL.
  42. */
  43. - (void)conferenceWillJoin:(NSDictionary *)data;
  44. /**
  45. * Called before a conference is left.
  46. *
  47. * The `data` dictionary contains a `url` key with the conference URL.
  48. */
  49. - (void)conferenceWillLeave:(NSDictionary *)data;
  50. /**
  51. * Called when loading the main configuration file from the Jitsi Meet
  52. * deployment file.
  53. *
  54. * The `data` dictionary contains an `error` key with the error and a `url` key
  55. * with the conference URL which necessitated the loading of the configuration
  56. * file.
  57. */
  58. - (void)loadConfigError:(NSDictionary *)data;
  59. @end