Class ReactorNettyWebSocketSession

All Implemented Interfaces:
WebSocketSession

public class ReactorNettyWebSocketSession extends NettyWebSocketSessionSupport<ReactorNettyWebSocketSession.WebSocketConnection>
WebSocketSession implementation for use with the Reactor Netty's NettyInbound and NettyOutbound.
Since:
5.0
Author:
Rossen Stoyanchev
  • Constructor Details

    • ReactorNettyWebSocketSession

      public ReactorNettyWebSocketSession(reactor.netty.http.websocket.WebsocketInbound inbound, reactor.netty.http.websocket.WebsocketOutbound outbound, HandshakeInfo info, org.springframework.core.io.buffer.NettyDataBufferFactory bufferFactory)
      Constructor for the session, using the NettyWebSocketSessionSupport.DEFAULT_FRAME_MAX_SIZE value.
    • ReactorNettyWebSocketSession

      public ReactorNettyWebSocketSession(reactor.netty.http.websocket.WebsocketInbound inbound, reactor.netty.http.websocket.WebsocketOutbound outbound, HandshakeInfo info, org.springframework.core.io.buffer.NettyDataBufferFactory bufferFactory, int maxFramePayloadLength)
      Constructor with an additional maxFramePayloadLength argument.
      Since:
      5.1
  • Method Details