Interface CallStatusEvent


public interface CallStatusEvent
Call status callback interface
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    onBusy(Call call)
    WCS received BUSY from SIP end
    void
    SIP call is established between WCS and SIP end.
    void
    onFailed(Call call)
    Call failed on WCS server
    void
    SIP call is terminated between WCS and SIP end.
    void
    onHold(Call call)
    The call is put on hold by remote SIP party
    void
    onRing(Call call)
    WCS received RINGING from SIP end
    void
    onTrying(Call call)
    WCS received TRYING from SIP end
  • Method Details

    • onTrying

      void onTrying(Call call)
      WCS received TRYING from SIP end
      Parameters:
      call -
    • onBusy

      void onBusy(Call call)
      WCS received BUSY from SIP end
      Parameters:
      call -
    • onFailed

      void onFailed(Call call)
      Call failed on WCS server
      Parameters:
      call -
    • onRing

      void onRing(Call call)
      WCS received RINGING from SIP end
      Parameters:
      call -
    • onHold

      void onHold(Call call)
      The call is put on hold by remote SIP party
      Parameters:
      call -
    • onEstablished

      void onEstablished(Call call)
      SIP call is established between WCS and SIP end.
      Parameters:
      call -
    • onFinished

      void onFinished(Call call)
      SIP call is terminated between WCS and SIP end.
      Parameters:
      call -