Class WebSocketCoreSession

java.lang.Object
org.eclipse.jetty.websocket.core.WebSocketCoreSession
All Implemented Interfaces:
Dumpable, Configuration, CoreSession, IncomingFrames, OutgoingFrames

public class WebSocketCoreSession extends Object implements CoreSession, Dumpable
The Core WebSocket Session.
  • Constructor Details Link icon

  • Method Details Link icon

    • getClassLoader Link icon

      public ClassLoader getClassLoader()
    • setClassLoader Link icon

      public void setClassLoader(ClassLoader classLoader)
    • handle Link icon

      protected void handle(Runnable runnable)
      Can be overridden to scope into the correct classloader before calling application code.
      Parameters:
      runnable - the runnable to execute.
    • getExtensionStack Link icon

      public ExtensionStack getExtensionStack()
    • getHandler Link icon

      public FrameHandler getHandler()
    • getNegotiatedSubProtocol Link icon

      public String getNegotiatedSubProtocol()
      Specified by:
      getNegotiatedSubProtocol in interface CoreSession
    • getIdleTimeout Link icon

      public Duration getIdleTimeout()
      Description copied from interface: Configuration
      Get the Idle Timeout
      Specified by:
      getIdleTimeout in interface Configuration
      Returns:
      the idle timeout
    • setIdleTimeout Link icon

      public void setIdleTimeout(Duration timeout)
      Description copied from interface: Configuration
      Set the Idle Timeout.
      Specified by:
      setIdleTimeout in interface Configuration
      Parameters:
      timeout - the timeout duration (timeout <= 0 implies an infinite timeout)
    • getWriteTimeout Link icon

      public Duration getWriteTimeout()
      Description copied from interface: Configuration
      Get the Write Timeout
      Specified by:
      getWriteTimeout in interface Configuration
      Returns:
      the write timeout
    • setWriteTimeout Link icon

      public void setWriteTimeout(Duration timeout)
      Description copied from interface: Configuration
      Set the Write Timeout.
      Specified by:
      setWriteTimeout in interface Configuration
      Parameters:
      timeout - the timeout duration (timeout <= 0 implies an infinite timeout)
    • getLocalAddress Link icon

      public SocketAddress getLocalAddress()
      Description copied from interface: CoreSession
      The Local Socket Address for the connection

      Do not assume that this will return a InetSocketAddress in all cases. Use of various proxies, and even UnixSockets can result a SocketAddress being returned without supporting InetSocketAddress

      Specified by:
      getLocalAddress in interface CoreSession
      Returns:
      the SocketAddress for the local connection, or null if not supported by Session
    • getRemoteAddress Link icon

      public SocketAddress getRemoteAddress()
      Description copied from interface: CoreSession
      The Remote Socket Address for the connection

      Do not assume that this will return a InetSocketAddress in all cases. Use of various proxies, and even UnixSockets can result a SocketAddress being returned without supporting InetSocketAddress

      Specified by:
      getRemoteAddress in interface CoreSession
      Returns:
      the SocketAddress for the remote connection, or null if not supported by Session
    • isInputOpen Link icon

      public boolean isInputOpen()
      Specified by:
      isInputOpen in interface CoreSession
      Returns:
      True if the websocket is open inbound
    • isOutputOpen Link icon

      public boolean isOutputOpen()
      Specified by:
      isOutputOpen in interface CoreSession
      Returns:
      True if the websocket is open outbound
    • isClosed Link icon

      public boolean isClosed()
      Specified by:
      isClosed in interface CoreSession
    • setWebSocketConnection Link icon

      public void setWebSocketConnection(WebSocketConnection connection)
      Used to set the WebSocketConnection on this WebSocketCoreSession.
      Parameters:
      connection - the websocket connection.
    • close Link icon

      public void close(Callback callback)
      Description copied from interface: CoreSession
      Initiate close handshake, no payload (no declared status code or reason phrase).
      Specified by:
      close in interface CoreSession
      Parameters:
      callback - the callback to track close frame sent (or failed).
    • close Link icon

      public void close(int statusCode, String reason, Callback callback)
      Description copied from interface: CoreSession
      Initiate close handshake with provided status code and optional reason phrase.
      Specified by:
      close in interface CoreSession
      Parameters:
      statusCode - the status code (should be a valid status code that can be sent).
      reason - optional reason phrase (will be truncated automatically by implementation to fit within limits of protocol).
      callback - the callback to track close frame sent (or failed).
    • close Link icon

      public void close(CloseStatus closeStatus, Callback callback)
      Description copied from interface: CoreSession
      Initiate close handshake with a provided CloseStatus.
      Specified by:
      close in interface CoreSession
      Parameters:
      closeStatus - the close status containing (statusCode, reason, and optional Throwable cause).
      callback - the callback to track close frame sent (or failed).
    • getByteBufferPool Link icon

      public ByteBufferPool getByteBufferPool()
      Specified by:
      getByteBufferPool in interface CoreSession
      Returns:
      The shared ByteBufferPool
    • onEof Link icon

      public void onEof()
      Used to notify the WebSocketCoreSession that EOF has been read or the connection has been closed.
    • processConnectionError Link icon

      public void processConnectionError(Throwable cause, Callback callback)
      Process an Error that originated from the connection. For protocol causes, send and abnormal close frame otherwise just close the connection.
      Parameters:
      cause - the cause
      callback - the callback on completion of error handling
    • processHandlerError Link icon

      public void processHandlerError(Throwable cause, Callback callback)
      Process an Error that originated from the handler. Send an abnormal close frame to ensure connection is closed.
      Parameters:
      cause - the cause
      callback - the callback on completion of error handling
    • onOpen Link icon

      public void onOpen()
      Used to notify the WebSocketCoreSession that the connection has been opened.
    • demand Link icon

      public void demand()
      Description copied from interface: CoreSession

      Manages flow control by indicating demand for a WebSocket frame.

      A call to FrameHandler.onFrame(Frame, Callback) will only be made if there is demand.

      If a previous demand has not been fulfilled this will throw ReadPendingException

      FrameHandler.onFrame(Frame, Callback).
      Specified by:
      demand in interface CoreSession
    • isRsv1Used Link icon

      public boolean isRsv1Used()
      Specified by:
      isRsv1Used in interface CoreSession
      Returns:
      true if an extension has been negotiated which uses the RSV1 bit.
    • isRsv2Used Link icon

      public boolean isRsv2Used()
      Specified by:
      isRsv2Used in interface CoreSession
      Returns:
      true if an extension has been negotiated which uses the RSV2 bit.
    • isRsv3Used Link icon

      public boolean isRsv3Used()
      Specified by:
      isRsv3Used in interface CoreSession
      Returns:
      true if an extension has been negotiated which uses the RSV3 bit.
    • getConnection Link icon

      public WebSocketConnection getConnection()
    • getExecutor Link icon

      public Executor getExecutor()
    • onFrame Link icon

      public void onFrame(Frame frame, Callback callback)
      Description copied from interface: IncomingFrames

      Process the incoming frame.

      Note: if you need to hang onto any information from the frame, be sure to copy it, as the information contained in the Frame will be released and/or reused by the implementation.

      Failure of the callback will propagate the failure back to the CoreSession to fail the connection and attempt to send a close Frame if one has not been sent.

      Specified by:
      onFrame in interface IncomingFrames
      Parameters:
      frame - the frame to process.
      callback - the read completion.
    • sendFrame Link icon

      public void sendFrame(Frame frame, Callback callback, boolean batch)
      Description copied from interface: OutgoingFrames
      A frame, and optional callback, intended for the network layer.

      Note: the frame can undergo many transformations in the various layers and extensions present in the implementation.

      If you are implementing a mutation, you are obliged to handle the incoming Callback appropriately.

      Specified by:
      sendFrame in interface OutgoingFrames
      Parameters:
      frame - the frame to eventually write to the network layer.
      callback - the callback to notify when the frame is written.
      batch - the batch mode requested by the sender.
    • flush Link icon

      public void flush(Callback callback)
      Specified by:
      flush in interface CoreSession
    • abort Link icon

      public void abort()
      Description copied from interface: CoreSession
      Issue a harsh abort of the underlying connection.

      This will terminate the connection, without sending a websocket close frame. No WebSocket Protocol close handshake will be performed.

      Once called, any read/write activity on the websocket from this point will be indeterminate. This can result in the FrameHandler.onError(Throwable, Callback) event being called indicating any issue that arises.

      Once the underlying connection has been determined to be closed, the FrameHandler.onClosed(CloseStatus, Callback) event will be called.

      Specified by:
      abort in interface CoreSession
    • isAutoFragment Link icon

      public boolean isAutoFragment()
      Specified by:
      isAutoFragment in interface Configuration
    • setAutoFragment Link icon

      public void setAutoFragment(boolean autoFragment)
      Specified by:
      setAutoFragment in interface Configuration
    • getMaxFrameSize Link icon

      public long getMaxFrameSize()
      Specified by:
      getMaxFrameSize in interface Configuration
    • setMaxFrameSize Link icon

      public void setMaxFrameSize(long maxFrameSize)
      Specified by:
      setMaxFrameSize in interface Configuration
    • getOutputBufferSize Link icon

      public int getOutputBufferSize()
      Specified by:
      getOutputBufferSize in interface Configuration
    • setOutputBufferSize Link icon

      public void setOutputBufferSize(int outputBufferSize)
      Specified by:
      setOutputBufferSize in interface Configuration
    • getInputBufferSize Link icon

      public int getInputBufferSize()
      Specified by:
      getInputBufferSize in interface Configuration
    • setInputBufferSize Link icon

      public void setInputBufferSize(int inputBufferSize)
      Specified by:
      setInputBufferSize in interface Configuration
    • getMaxBinaryMessageSize Link icon

      public long getMaxBinaryMessageSize()
      Specified by:
      getMaxBinaryMessageSize in interface Configuration
    • setMaxBinaryMessageSize Link icon

      public void setMaxBinaryMessageSize(long maxSize)
      Specified by:
      setMaxBinaryMessageSize in interface Configuration
    • getMaxTextMessageSize Link icon

      public long getMaxTextMessageSize()
      Specified by:
      getMaxTextMessageSize in interface Configuration
    • setMaxTextMessageSize Link icon

      public void setMaxTextMessageSize(long maxSize)
      Specified by:
      setMaxTextMessageSize in interface Configuration
    • getMaxOutgoingFrames Link icon

      public int getMaxOutgoingFrames()
      Description copied from interface: Configuration
      Get the maximum number of data frames allowed to be waiting to be sent at any one time. The default value is -1, this indicates there is no limit on how many frames can be queued to be sent by the implementation. If the limit is exceeded, subsequent frames sent are failed with a WritePendingException but the connection is not failed and will remain open.
      Specified by:
      getMaxOutgoingFrames in interface Configuration
      Returns:
      the max number of frames.
    • setMaxOutgoingFrames Link icon

      public void setMaxOutgoingFrames(int maxOutgoingFrames)
      Description copied from interface: Configuration
      Set the maximum number of data frames allowed to be waiting to be sent at any one time. The default value is -1, this indicates there is no limit on how many frames can be queued to be sent by the implementation. If the limit is exceeded, subsequent frames sent are failed with a WritePendingException but the connection is not failed and will remain open.
      Specified by:
      setMaxOutgoingFrames in interface Configuration
      Parameters:
      maxOutgoingFrames - the max number of frames.
    • dump Link icon

      public String dump()
      Specified by:
      dump in interface Dumpable
    • dump Link icon

      public void dump(Appendable out, String indent) throws IOException
      Description copied from interface: Dumpable
      Dump this object (and children) into an Appendable using the provided indent after any new lines. The indent should not be applied to the first object dumped.
      Specified by:
      dump in interface Dumpable
      Parameters:
      out - The appendable to dump to
      indent - The indent to apply after any new lines.
      Throws:
      IOException - if unable to write to Appendable
    • getNegotiatedExtensions Link icon

      public List<ExtensionConfig> getNegotiatedExtensions()
      Description copied from interface: CoreSession
      The negotiated WebSocket Extension Configurations for this session.
      Specified by:
      getNegotiatedExtensions in interface CoreSession
      Returns:
      the list of Negotiated Extension Configurations for this session.
    • getParameterMap Link icon

      public Map<String,List<String>> getParameterMap()
      Description copied from interface: CoreSession
      The parameter map (from URI Query) for the active session.
      Specified by:
      getParameterMap in interface CoreSession
      Returns:
      the immutable map of parameters
    • getProtocolVersion Link icon

      public String getProtocolVersion()
      Description copied from interface: CoreSession
      The active Sec-WebSocket-Version (protocol version) in use.
      Specified by:
      getProtocolVersion in interface CoreSession
      Returns:
      the protocol version in use.
    • getRequestURI Link icon

      public URI getRequestURI()
      Description copied from interface: CoreSession
      The active connection's Request URI. This is the URI of the upgrade request and is typically http: or https: rather than the ws: or wss: scheme.
      Specified by:
      getRequestURI in interface CoreSession
      Returns:
      the absolute URI (including Query string)
    • isSecure Link icon

      public boolean isSecure()
      Description copied from interface: CoreSession
      The active connection's Secure status indicator.
      Specified by:
      isSecure in interface CoreSession
      Returns:
      true if connection is secure (similar in role to HttpServletRequest.isSecure())
    • getBehavior Link icon

      public Behavior getBehavior()
      Specified by:
      getBehavior in interface CoreSession
      Returns:
      Client or Server behaviour
    • getWebSocketComponents Link icon

      public WebSocketComponents getWebSocketComponents()
      Specified by:
      getWebSocketComponents in interface CoreSession
      Returns:
      the WebSocketComponents instance in use for this Connection.
    • toString Link icon

      public String toString()
      Overrides:
      toString in class Object