-
public interface MessageListenerThe MessageListener interface defines a set of callbacks for events related to push notifications for incoming calls.
-
-
Method Summary
Modifier and Type Method Description abstract voidonCallInvite(@NonNull() CallInvite callInvite)Notifies the listener that an incoming call invite has been received. abstract voidonCancelledCallInvite(@NonNull() CancelledCallInvite cancelledCallInvite, @Nullable() CallException callException)Notifies the listener that an incoming call invite was cancelled. -
-
Method Detail
-
onCallInvite
abstract void onCallInvite(@NonNull() CallInvite callInvite)
Notifies the listener that an incoming call invite has been received.
-
onCancelledCallInvite
abstract void onCancelledCallInvite(@NonNull() CancelledCallInvite cancelledCallInvite, @Nullable() CallException callException)
Notifies the listener that an incoming call invite was cancelled.
-
-
-
-