Uses of Interface
io.inverno.mod.http.server.ws.WebSocketMessage
Packages that use WebSocketMessage
-
Uses of WebSocketMessage in io.inverno.mod.http.server.ws
Methods in io.inverno.mod.http.server.ws that return WebSocketMessageModifier and TypeMethodDescriptionWebSocketMessage.Factory.binary(io.netty.buffer.ByteBuf value) Creates a binary message with the specified payload data.WebSocketMessage.Factory.binary(org.reactivestreams.Publisher<io.netty.buffer.ByteBuf> stream) Creates a binary message with the specified payload data stream.Creates a text message with the specified payload data.Creates a text message with the specified payload data stream.WebSocketMessage.Factory.text_raw(io.netty.buffer.ByteBuf value) Creates a text message with the specified raw payload data.WebSocketMessage.Factory.text_raw(org.reactivestreams.Publisher<io.netty.buffer.ByteBuf> stream) Creates a text message with the specified raw payload data stream.Methods in io.inverno.mod.http.server.ws that return types with arguments of type WebSocketMessageModifier and TypeMethodDescriptionorg.reactivestreams.Publisher<WebSocketMessage>WebSocketExchange.Inbound.binaryMessages()Returns the binary messages received by the server from the client.org.reactivestreams.Publisher<WebSocketMessage>WebSocketExchange.Inbound.messages()Returns the messages received by the server from the client.org.reactivestreams.Publisher<WebSocketMessage>WebSocketExchange.Inbound.textMessages()Returns the text messages received by the server from the client.Method parameters in io.inverno.mod.http.server.ws with type arguments of type WebSocketMessageModifier and TypeMethodDescriptionvoidWebSocketExchange.Outbound.messages(Function<WebSocketMessage.Factory, org.reactivestreams.Publisher<WebSocketMessage>> messages) Specifies the stream of messages sent to the client.