Interface CallListener

    • Nested Class Summary

      Nested Classes 
      Modifier and Type Class Description
    • Field Summary

      Fields 
      Modifier and Type Field Description
    • Constructor Summary

      Constructors 
      Constructor Description
    • Enum Constant Summary

      Enum Constants 
      Enum Constant Description
    • Constructor Detail

    • Method Detail

      • onCallProgressing

         abstract Unit onCallProgressing(Call call)

        Tells the listener that the outgoing call has entered the CallState.PROGRESSING state and a progress tone can be played.

        Parameters:
        call - The outgoing call to the client on the other end.
      • onCallRinging

         Unit onCallRinging(Call call)

        Tells the listener that the outgoing call has entered the CallState.RINGING state and the callee received the call.

        Parameters:
        call - The outgoing call to the client on the other end.
      • onCallAnswered

         Unit onCallAnswered(Call call)

        Tells the listener that the callee answered the call. Note that it might take some time after this callback is invoked for media stream to connect. See onCallEstablished for more information.

        Parameters:
        call - The call that was answered.
      • onCallEstablished

         abstract Unit onCallEstablished(Call call)

        Tells the listener that the call was answered and media stream is connected. This means both peers should be able to hear and communicate with each other. This callback ideally is invoked shortly after onCallAnswered, however for various reasons (e.g bad network conditions) it might take few seconds to fully establish a connection after the call is answered.

        Parameters:
        call - The call that was established.