| Package | Description | 
|---|---|
| com.cometchat.pro.core | 
| Modifier and Type | Method and Description | 
|---|---|
static Call | 
Call.fromJson(java.lang.String response)  | 
static Call | 
CometChat.getActiveCall()
 Returns Call object of Active call 
 | 
| Modifier and Type | Method and Description | 
|---|---|
static void | 
CometChat.initiateCall(Call call,
            CometChat.CallbackListener<Call> listener)
 A method to initiate call between between two Users or a particular Group 
 | 
void | 
CometChat.OngoingCallListener.onCallEnded(Call call)  | 
abstract void | 
CometChat.CallListener.onIncomingCallCancelled(Call call)
 To receive incoming call cancelled events 
 | 
abstract void | 
CometChat.CallListener.onIncomingCallReceived(Call call)
 To receive incoming call events 
 | 
abstract void | 
CometChat.CallListener.onOutgoingCallAccepted(Call call)
 To receive outgoing call accepted events 
 | 
abstract void | 
CometChat.CallListener.onOutgoingCallRejected(Call call)
 To receive outgoing call rejected events 
 | 
| Modifier and Type | Method and 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 Group 
 | 
static void | 
CometChat.endCall(java.lang.String sessionId,
       CometChat.CallbackListener<Call> listener)
 A method to end call between between two Users or a particular Group 
 | 
static void | 
CometChat.initiateCall(Call call,
            CometChat.CallbackListener<Call> listener)
 A method to initiate call between between two Users or a particular Group 
 | 
static 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 
 |