Package tvi.webrtc

Interface SdpObserver


public interface SdpObserver
Interface for observing SDP-related events.
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Called on error of Create{Offer,Answer}().
    void
    Called on success of Create{Offer,Answer}().
    void
    Called on error of Set{Local,Remote}Description().
    void
    Called on success of Set{Local,Remote}Description().
  • Method Details

    • onCreateSuccess

      void onCreateSuccess(SessionDescription sdp)
      Called on success of Create{Offer,Answer}().
    • onSetSuccess

      void onSetSuccess()
      Called on success of Set{Local,Remote}Description().
    • onCreateFailure

      void onCreateFailure(String error)
      Called on error of Create{Offer,Answer}().
    • onSetFailure

      void onSetFailure(String error)
      Called on error of Set{Local,Remote}Description().