Class Endpoint

java.lang.Object
javax.websocket.Endpoint

public abstract class Endpoint extends Object
  • Constructor Details

    • Endpoint

      public Endpoint()
  • Method Details

    • onOpen

      public abstract void onOpen(Session session, EndpointConfig config)
      Event that is triggered when a new session starts.
      Parameters:
      session - The new session.
      config - The configuration with which the Endpoint was configured.
    • onClose

      public void onClose(Session session, CloseReason closeReason)
      Event that is triggered when a session has closed.
      Parameters:
      session - The session
      closeReason - Why the session was closed
    • onError

      public void onError(Session session, Throwable throwable)
      Event that is triggered when a protocol error occurs.
      Parameters:
      session - The session.
      throwable - The exception.