Interface SessionEvent


public interface SessionEvent
Events of session
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    On received data from connected app
    void
    onConnected(Connection connection)
    Event of client connected to server
    void
    Event of client disconnected from server
    void
    Event of client registered on SIP server
  • Method Details

    • onAppData

      void onAppData(Data data)
      On received data from connected app
      Parameters:
      data - Data from application
    • onConnected

      void onConnected(Connection connection)
      Event of client connected to server
      Parameters:
      connection - Current connection state
    • onRegistered

      void onRegistered(Connection connection)
      Event of client registered on SIP server
      Parameters:
      connection - Current connection state
    • onDisconnection

      void onDisconnection(Connection connection)
      Event of client disconnected from server
      Parameters:
      connection - Current connection state