Uses of Interface
io.inverno.mod.http.base.ws.WebSocketMessage
Packages that use WebSocketMessage
Package
Description
Inverno HTTP WebSocket base API implementation classes.
Inverno HTTP WebSocket base API.
-
Uses of WebSocketMessage in io.inverno.mod.http.base.internal.ws
Classes in io.inverno.mod.http.base.internal.ws that implement WebSocketMessageMethods in io.inverno.mod.http.base.internal.ws that return WebSocketMessageModifier and TypeMethodDescriptionGenericWebSocketMessage.GenericFactory.binary(io.netty.buffer.ByteBuf value) GenericWebSocketMessage.GenericFactory.binary(org.reactivestreams.Publisher<io.netty.buffer.ByteBuf> stream) GenericWebSocketMessage.GenericFactory.text_raw(io.netty.buffer.ByteBuf value) GenericWebSocketMessage.GenericFactory.text_raw(org.reactivestreams.Publisher<io.netty.buffer.ByteBuf> stream) -
Uses of WebSocketMessage in io.inverno.mod.http.base.ws
Methods in io.inverno.mod.http.base.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.base.ws that return types with arguments of type WebSocketMessageModifier and TypeMethodDescriptionorg.reactivestreams.Publisher<WebSocketMessage> BaseWebSocketExchange.Inbound.binaryMessages()Returns the received binary messages.org.reactivestreams.Publisher<WebSocketMessage> BaseWebSocketExchange.Inbound.messages()Returns the received messages.org.reactivestreams.Publisher<WebSocketMessage> BaseWebSocketExchange.Inbound.textMessages()Returns the received text messages.Method parameters in io.inverno.mod.http.base.ws with type arguments of type WebSocketMessageModifier and TypeMethodDescriptionvoidBaseWebSocketExchange.Outbound.messages(Function<WebSocketMessage.Factory, org.reactivestreams.Publisher<WebSocketMessage>> messages) Sets the stream of messages to send.