Uses of Class
org.springframework.web.reactive.socket.WebSocketMessage
Packages that use WebSocketMessage
Package
Description
Abstractions and support classes for reactive WebSocket interactions.
Classes adapting Spring's Reactive WebSocket API to and from WebSocket runtimes.
-
Uses of WebSocketMessage in org.springframework.web.reactive.socket
Methods in org.springframework.web.reactive.socket that return WebSocketMessageModifier and TypeMethodDescriptionWebSocketSession.binaryMessage(Function<DataBufferFactory, DataBuffer> payloadFactory) Factory method to create a binary WebSocketMessage using theWebSocketSession.bufferFactory()for the session.WebSocketSession.pingMessage(Function<DataBufferFactory, DataBuffer> payloadFactory) Factory method to create a ping WebSocketMessage using theWebSocketSession.bufferFactory()for the session.WebSocketSession.pongMessage(Function<DataBufferFactory, DataBuffer> payloadFactory) Factory method to create a pong WebSocketMessage using theWebSocketSession.bufferFactory()for the session.WebSocketMessage.retain()Retain the data buffer for the message payload, which is useful on runtimes (for example, Netty) with pooled buffers.WebSocketSession.textMessage(String payload) Factory method to create a textWebSocketMessageusing theWebSocketSession.bufferFactory()for the session.Methods in org.springframework.web.reactive.socket that return types with arguments of type WebSocketMessageModifier and TypeMethodDescriptionWebSocketSession.receive()Provides access to the stream of inbound messages.Method parameters in org.springframework.web.reactive.socket with type arguments of type WebSocketMessageModifier and TypeMethodDescriptionWebSocketSession.send(Publisher<WebSocketMessage> messages) Give a source of outgoing messages, write the messages and return aMono<Void>that completes when the source completes and writing is done. -
Uses of WebSocketMessage in org.springframework.web.reactive.socket.adapter
Subclasses with type arguments of type WebSocketMessage in org.springframework.web.reactive.socket.adapterModifier and TypeClassDescriptionprotected final classWrite processor for outbound WebSocket messages.Methods in org.springframework.web.reactive.socket.adapter that return WebSocketMessageModifier and TypeMethodDescriptionAbstractWebSocketSession.binaryMessage(Function<DataBufferFactory, DataBuffer> payloadFactory) AbstractWebSocketSession.pingMessage(Function<DataBufferFactory, DataBuffer> payloadFactory) AbstractWebSocketSession.pongMessage(Function<DataBufferFactory, DataBuffer> payloadFactory) AbstractWebSocketSession.textMessage(String payload) protected WebSocketMessageNettyWebSocketSessionSupport.toMessage(io.netty.handler.codec.http.websocketx.WebSocketFrame frame) Methods in org.springframework.web.reactive.socket.adapter that return types with arguments of type WebSocketMessageModifier and TypeMethodDescriptionAbstractListenerWebSocketSession.receive()abstract Flux<WebSocketMessage> AbstractWebSocketSession.receive()JettyWebSocketSession.receive()ReactorNettyWebSocketSession.receive()Methods in org.springframework.web.reactive.socket.adapter with parameters of type WebSocketMessageModifier and TypeMethodDescriptionprotected voidAbstractListenerWebSocketSession.WebSocketSendProcessor.discardData(WebSocketMessage message) protected booleanAbstractListenerWebSocketSession.WebSocketSendProcessor.isDataEmpty(WebSocketMessage message) protected abstract booleanAbstractListenerWebSocketSession.sendMessage(WebSocketMessage message) Send the given WebSocket message.JettyWebSocketSession.sendMessage(WebSocketMessage message) protected booleanStandardWebSocketSession.sendMessage(WebSocketMessage message) protected io.netty.handler.codec.http.websocketx.WebSocketFrameNettyWebSocketSessionSupport.toFrame(WebSocketMessage message) protected booleanAbstractListenerWebSocketSession.WebSocketSendProcessor.write(WebSocketMessage message) Method parameters in org.springframework.web.reactive.socket.adapter with type arguments of type WebSocketMessageModifier and TypeMethodDescriptionAbstractListenerWebSocketSession.send(Publisher<WebSocketMessage> messages) AbstractWebSocketSession.send(Publisher<WebSocketMessage> messages) JettyWebSocketSession.send(Publisher<WebSocketMessage> messages) ReactorNettyWebSocketSession.send(Publisher<WebSocketMessage> messages)