ZDK
IConferenceEventsHandler.h
1 #ifndef __ICONFERENCENOTIFICATIONS__
2 #define __ICONFERENCENOTIFICATIONS__
3 
4 #include "IEventHandle.h"
5 #include "Types/SharedPointerTypes.h"
6 
7 namespace ZDK
8 {
9 
10 //# @abi(obj_c|jni) delegate
12 {
13 public:
14  //# @abi(all) documentation
24  virtual void OnConferenceParticipantJoined(ZDK::Shared::Conference conf, ZDK::Shared::Call call) = 0;
25 
39  virtual void OnConferenceParticipantRemoved(ZDK::Shared::Conference conf, ZDK::Shared::Call call) = 0;
40 
51  virtual void OnConferenceExtendedError(ZDK::Shared::Conference conf, ZDK::Shared::String message) = 0;
52 };
53 
54 } //namespace ZDK
55 
56 #endif //__ICONFERENCENOTIFICATIONS__
virtual void OnConferenceParticipantJoined(ZDK::Shared::Conference conf, ZDK::Shared::Call call)=0
Call was added to the conference.
virtual void OnConferenceParticipantRemoved(ZDK::Shared::Conference conf, ZDK::Shared::Call call)=0
Call was removed from the conference.
Definition: IEventHandle.h:11
Definition: IAccountConfig.h:10
Definition: IConferenceEventsHandler.h:11
virtual void OnConferenceExtendedError(ZDK::Shared::Conference conf, ZDK::Shared::String message)=0
Notify upon error on Conference.