public interface WebSocketSession
Use session.receive() to compose on
 the inbound message stream, and session.send(publisher) to provide the outbound message stream.
| Modifier and Type | Method and Description | 
|---|---|
| WebSocketMessage | binaryMessage(Function<DataBufferFactory,DataBuffer> payloadFactory)Factory method to create a binary WebSocketMessage using the
  bufferFactory()for the session. | 
| DataBufferFactory | bufferFactory()Return a  DataBufferFactory to create message payloads. | 
| default reactor.core.publisher.Mono<Void> | close()Close the WebSocket session with  CloseStatus.NORMAL. | 
| reactor.core.publisher.Mono<Void> | close(CloseStatus status)Close the WebSocket session with the given status. | 
| reactor.core.publisher.Mono<CloseStatus> | closeStatus()Provides access to the  CloseStatuswith which the session is
 closed either locally or remotely, or completes empty if the session ended
 without a status. | 
| Map<String,Object> | getAttributes()Return the map with attributes associated with the WebSocket session. | 
| HandshakeInfo | getHandshakeInfo()Return information from the handshake request. | 
| String | getId()Return the id for the session. | 
| boolean | isOpen()Whether the underlying connection is open. | 
| WebSocketMessage | pingMessage(Function<DataBufferFactory,DataBuffer> payloadFactory)Factory method to create a ping WebSocketMessage using the
  bufferFactory()for the session. | 
| WebSocketMessage | pongMessage(Function<DataBufferFactory,DataBuffer> payloadFactory)Factory method to create a pong WebSocketMessage using the
  bufferFactory()for the session. | 
| reactor.core.publisher.Flux<WebSocketMessage> | receive()Provides access to the stream of inbound messages. | 
| reactor.core.publisher.Mono<Void> | send(Publisher<WebSocketMessage> messages)Give a source of outgoing messages, write the messages and return a
  Mono<Void>that completes when the source completes and writing
 is done. | 
| WebSocketMessage | textMessage(String payload)Factory method to create a text  WebSocketMessageusing thebufferFactory()for the session. | 
String getId()
HandshakeInfo getHandshakeInfo()
DataBufferFactory bufferFactory()
DataBuffer Factory to create message payloads.Map<String,Object> getAttributes()
null)reactor.core.publisher.Flux<WebSocketMessage> receive()
This stream receives a completion or error signal when the connection
 is closed. In a typical WebSocketHandler implementation this
 stream is composed into the overall processing flow, so that when the
 connection is closed, handling will end.
 
See the class-level doc of WebSocketHandler and the reference
 for more details and examples of how to handle the session.
reactor.core.publisher.Mono<Void> send(Publisher<WebSocketMessage> messages)
Mono<Void> that completes when the source completes and writing
 is done.
 See the class-level doc of WebSocketHandler and the reference
 for more details and examples of how to handle the session.
boolean isOpen()
default reactor.core.publisher.Mono<Void> close()
CloseStatus.NORMAL.reactor.core.publisher.Mono<Void> close(CloseStatus status)
status - the close statusreactor.core.publisher.Mono<CloseStatus> closeStatus()
CloseStatus with which the session is
 closed either locally or remotely, or completes empty if the session ended
 without a status.WebSocketMessage textMessage(String payload)
WebSocketMessage using the
 bufferFactory() for the session.WebSocketMessage binaryMessage(Function<DataBufferFactory,DataBuffer> payloadFactory)
bufferFactory() for the session.WebSocketMessage pingMessage(Function<DataBufferFactory,DataBuffer> payloadFactory)
bufferFactory() for the session.WebSocketMessage pongMessage(Function<DataBufferFactory,DataBuffer> payloadFactory)
bufferFactory() for the session.