Uses of Interface
org.eclipse.jetty.websocket.core.messages.MessageSink
Packages that use MessageSink
Package
Description
Jetty WebSocket Common : Implementation [Internal Use Only]
-
Uses of MessageSink in org.eclipse.jetty.ee10.websocket.jakarta.common
Methods in org.eclipse.jetty.ee10.websocket.jakarta.common that return MessageSinkModifier and TypeMethodDescriptionstatic MessageSink
JakartaWebSocketFrameHandlerFactory.createMessageSink
(JakartaWebSocketSession session, JakartaWebSocketMessageMetadata msgMetadata) Methods in org.eclipse.jetty.ee10.websocket.jakarta.common that return types with arguments of type MessageSinkModifier and TypeMethodDescriptionClass<? extends MessageSink>
JakartaWebSocketMessageMetadata.getSinkClass()
Method parameters in org.eclipse.jetty.ee10.websocket.jakarta.common with type arguments of type MessageSinkModifier and TypeMethodDescriptionvoid
JakartaWebSocketMessageMetadata.setSinkClass
(Class<? extends MessageSink> sinkClass) -
Uses of MessageSink in org.eclipse.jetty.ee10.websocket.jakarta.common.messages
Classes in org.eclipse.jetty.ee10.websocket.jakarta.common.messages that implement MessageSinkModifier 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
Methods in org.eclipse.jetty.websocket.common that return types with arguments of type MessageSinkModifier and TypeMethodDescriptionClass<? extends MessageSink>
JettyWebSocketFrameHandlerMetadata.getBinarySink()
Class<? extends MessageSink>
JettyWebSocketFrameHandlerMetadata.getTextSink()
Method parameters in org.eclipse.jetty.websocket.common with type arguments of type MessageSinkModifier 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
Classes in org.eclipse.jetty.websocket.common.internal that implement MessageSink -
Uses of MessageSink in org.eclipse.jetty.websocket.core.messages
Classes in org.eclipse.jetty.websocket.core.messages that implement MessageSinkModifier 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
.Methods in org.eclipse.jetty.websocket.core.messages that return MessageSinkModifier and TypeMethodDescriptionabstract MessageSink
DispatchedMessageSink.newMessageSink()
InputStreamMessageSink.newMessageSink()