Uses of Interface
org.eclipse.jetty.websocket.core.messages.MessageSink
Package
Description
Jetty WebSocket Common : Implementation [Internal Use Only]
-
Uses of MessageSink in org.eclipse.jetty.ee10.websocket.jakarta.common
Modifier and TypeMethodDescriptionstatic MessageSink
JakartaWebSocketFrameHandlerFactory.createMessageSink
(JakartaWebSocketSession session, JakartaWebSocketMessageMetadata msgMetadata) Modifier and TypeMethodDescriptionClass<? extends MessageSink>
JakartaWebSocketMessageMetadata.getSinkClass()
Modifier and TypeMethodDescriptionvoid
JakartaWebSocketMessageMetadata.setSinkClass
(Class<? extends MessageSink> sinkClass) -
Uses of MessageSink in org.eclipse.jetty.ee10.websocket.jakarta.common.messages
Modifier and TypeClassDescriptionclass
static class
AbstractDecodedMessageSink.Basic<T extends jakarta.websocket.Decoder>
static class
AbstractDecodedMessageSink.Stream<T extends jakarta.websocket.Decoder>
class
class
class
class
-
Uses of MessageSink in org.eclipse.jetty.websocket.common
Modifier and TypeMethodDescriptionClass<? extends MessageSink>
JettyWebSocketFrameHandlerMetadata.getBinarySink()
Class<? extends MessageSink>
JettyWebSocketFrameHandlerMetadata.getTextSink()
Modifier and TypeMethodDescriptionvoid
JettyWebSocketFrameHandlerMetadata.setBinaryHandle
(Class<? extends MessageSink> sinkClass, MethodHandle binary, Object origin) void
JettyWebSocketFrameHandlerMetadata.setTextHandle
(Class<? extends MessageSink> sinkClass, MethodHandle text, Object origin) -
Uses of MessageSink in org.eclipse.jetty.websocket.common.internal
-
Uses of MessageSink in org.eclipse.jetty.websocket.core.messages
Modifier and TypeClassDescriptionclass
Abstract implementation ofMessageSink
.class
AMessageSink
implementation that accumulates BINARY frames into a message that is then delivered to the application function passed to the constructor in the form of abyte[]
.class
AMessageSink
implementation that accumulates BINARY frames into a message that is then delivered to the application function passed to the constructor in the form of aByteBuffer
.class
A partial implementation ofMessageSink
for methods that consume WebSocket messages using blocking stream APIs, typically viaInputStream
orReader
.class
class
Support class for reading a WebSocket BINARY message via a InputStream.class
Support class for reading a (single) WebSocket TEXT message via a Reader.class
AMessageSink
implementation that delivers BINARY frames to the application function passed to the constructor in the form of abyte[]
.class
AMessageSink
implementation that delivers BINARY frames to the application function passed to the constructor in the form of aByteBuffer
.class
AMessageSink
implementation that delivers TEXT frames to the application function passed to the constructor in the form of aString
.class
class
AMessageSink
implementation that accumulates TEXT frames into a message that is then delivered to the application function passed to the constructor in the form of aString
.Modifier and TypeMethodDescriptionabstract MessageSink
DispatchedMessageSink.newMessageSink()
InputStreamMessageSink.newMessageSink()