Skip to content

GitLab

  • Menu
Projects Groups Snippets
    • Loading...
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
  • Sign in / Register
  • R REVECallSDKSample
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 0
    • Issues 0
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 0
    • Merge requests 0
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Monitor
    • Monitor
    • Incidents
  • Packages & Registries
    • Packages & Registries
    • Package Registry
    • Container Registry
    • Infrastructure Registry
  • Analytics
    • Analytics
    • CI/CD
    • Repository
    • Value Stream
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • sdk
  • REVECallSDKSample
  • Wiki
  • Call Handling

Last edited by Sourav Das Feb 08, 2022
Page history
This is an old version of this page. You can view the most recent version or browse the history.

Call Handling

Handling Calls With UI using Reve Voice SDK

After calling the SIPWrapper.startSIP() method VOIP Calling is available to you through the method

CallHandler.makeCall()

But Even if you have access to the call functionalites, you need to Make your UI work according to the background tasks. The Listeners Interfaces SDKSIPListener and SDKServiceListener are used for that reason. See Listeners Guide to correctly Implement Listeners.

After Listeners are correctly implemented you can use your UI to start your calls with the method

CallHandler.makeCall(phoneNumber:String) 

This method can be called and the you can get the relevant call related info through the Listeners.

After you have started a call with makeCall method, you can end this call by invoking the the following method

CallHandler.endCall()

Finally you can accept incoming calls by invoking the method

callHandler.acceptCall(callID)

You can find the callID through the SDKServiceListener (See Listeners Guide)

In call Functionalities

While a call is going on three features of calls can also be found in this SDK. You can

  1. Mute your Microphone,
  2. Hold your Call &
  3. Turn on the Speaker. You can use the following methods to achieve the aforementioned call features.

To mute call

CallHandler.setCallMute(true)

To unmute call

CallHandler.setCallMute(false)

To hold call

CallHandler.holdCall(true)

To unhold call

CallHandler.holdCall(false)

To turn on speaker

CallHandler.setSpeakerOn(true)

To turn off speaker

CallHandler.setSpeakerOn(false)
Clone repository
  • Call Handling
  • Configuring Listeners
  • Demo App Details
  • Get Api Key
  • Other Important Topics
  • Home