Uses of Class
com.cometchat.pro.core.Call
-
Packages that use Call Package Description com.cometchat.pro.core -
-
Uses of Call in com.cometchat.pro.core
Methods in com.cometchat.pro.core that return Call Modifier and Type Method Description static Call
Call. fromJson(java.lang.String response)
static Call
CometChat. getActiveCall()
Returns Call object of Active callMethods in com.cometchat.pro.core with parameters of type Call Modifier and Type Method Description static void
CometChat. initiateCall(Call call, CometChat.CallbackListener<Call> listener)
A method to initiate call between between two Users or a particular Groupvoid
CometChat.OngoingCallListener. onCallEnded(Call call)
abstract void
CometChat.CallListener. onIncomingCallCancelled(Call call)
To receive incoming call cancelled eventsabstract void
CometChat.CallListener. onIncomingCallReceived(Call call)
To receive incoming call eventsabstract void
CometChat.CallListener. onOutgoingCallAccepted(Call call)
To receive outgoing call accepted eventsabstract void
CometChat.CallListener. onOutgoingCallRejected(Call call)
To receive outgoing call rejected eventsMethod parameters in com.cometchat.pro.core with type arguments of type Call Modifier and Type Method Description static void
CometChat. acceptCall(java.lang.String sessionId, CometChat.CallbackListener<Call> listener)
A method to accept call between between two Users or a particular Groupstatic void
CometChat. endCall(java.lang.String sessionId, CometChat.CallbackListener<Call> listener)
A method to end call between between two Users or a particular Groupstatic void
CometChat. initiateCall(Call call, CometChat.CallbackListener<Call> listener)
A method to initiate call between between two Users or a particular Groupstatic void
CometChat. rejectCall(java.lang.String sessionId, java.lang.String status, CometChat.CallbackListener<Call> listener)
A method to reject call between between two Users or a particular Group
-