Call invitations
The Agora Signaling SDK supports the call invitation function, including the following behaviors in common call scenarios:
-
Caller: Sends or cancels a call invitation.
-
Callee: Accepts or refuses a call invitation.
The call invitation function provided by the Agora Signaling SDK only implements the basic control logic of the call invitation: sending, canceling, accepting, and refusing the call invitation. The Agora Signaling SDK does not handle operations after a callee accepts the invitation, nor does it manage the entire lifecycle. You must implement that yourself according to your requirements.
The call invitation can be applied to the following scenarios:
-
A call invitation requiring notification of an incoming call.
-
A screen-sharing scenario requiring call invitations.
-
A whiteboard-sharing scenario requiring a video call between two parties.
-
A call invitation requiring synchronizing the states of both parties.
Implementation
In a complete call invitation process, the call invitation states of the caller and the callee are defined by LocalInvitation and RemoteInvitation, respectively.
Send a call invitation
The steps to send a call invitation are as follows:
-
The caller creates the
LocalInvitationby callingcreateLocalInvitation; at the same time, the lifecycle of theLocalInvitationbegins. -
The caller sends a call invitation by calling
sendLocalInvitation. The lifecycle of theRemoteInvitationbegins as the callee receives theonRemoteInvitationReceivedcallback, and then the caller receives theonLocalInvitationReceivedByPeercallback.The sample code for sending a call invitation is as follows:
Cancel a call invitation
The caller cancels the call invitation by calling cancelLocalInvitation. The lifecycle of the RemoteInvitation ends as the callee receives the onRemoteInvitationCanceled callback. And then the lifecycle of the LocalInvitation ends as the caller receives the onLocalInvitationCanceled callback.
The sample code for canceling a call invitation is as follows:
Accept a call invitation
The callee gets RemoteInvitation from onRemoteInvitationReceived and accepts the call invitation by calling acceptRemoteInvitation. The lifecycle of the RemoteInvitation ends as the caller receives the onRemoteInvitationAccepted callback. The lifecycle of the LocalInvitation ends as the caller receives the onLocalInvitationAccepted callback.
The sample code for accepting a call invitation is as follows:
Refuse a call invitation
The callee gets RemoteInvitation from onRemoteInvitationReceived and refuses the call invitation by calling refuseRemoteInvitation. The lifecycle of the RemoteInvitation ends as the caller receives the onRemoteInvitationRefused callback. The lifecycle of the LocalInvitation ends as the caller receives the onLocalInvitationRefused callback.
The sample code for refusing a call invitation is as follows:
API Reference
See Call invitation