Uses of Interface
org.eclipse.jetty.websocket.api.WriteCallback
-
Packages that use WriteCallback Package Description org.eclipse.jetty.websocket.api Jetty WebSocket APIorg.eclipse.jetty.websocket.api.extensions Jetty WebSocket API : WebSocket Extension APIorg.eclipse.jetty.websocket.client.io Jetty WebSocket Client : I/O Implementation [Internal Use Only]org.eclipse.jetty.websocket.common Jetty WebSocket Common : Implementation [Internal Use Only]org.eclipse.jetty.websocket.common.extensions Jetty WebSocket Common : Extension Implementationsorg.eclipse.jetty.websocket.common.extensions.compress Jetty WebSocket Common : Message Compression Extension Implementationsorg.eclipse.jetty.websocket.common.extensions.fragment Jetty WebSocket Common : Auto Fragment Extension Implementationorg.eclipse.jetty.websocket.common.extensions.identity Jetty WebSocket Common : Identity Extension Implementationorg.eclipse.jetty.websocket.common.io Jetty WebSocket Common : I/O Implementationorg.eclipse.jetty.websocket.common.message Jetty WebSocket Common : Message Handlingorg.eclipse.jetty.websocket.jsr356.messages -
-
Uses of WriteCallback in org.eclipse.jetty.websocket.api
Methods in org.eclipse.jetty.websocket.api with parameters of type WriteCallback Modifier and Type Method Description void
RemoteEndpoint. sendBytes(java.nio.ByteBuffer data, WriteCallback callback)
Initiates the asynchronous transmission of a binary message.void
RemoteEndpoint. sendString(java.lang.String text, WriteCallback callback)
Initiates the asynchronous transmission of a text message. -
Uses of WriteCallback in org.eclipse.jetty.websocket.api.extensions
Methods in org.eclipse.jetty.websocket.api.extensions with parameters of type WriteCallback Modifier and Type Method Description void
OutgoingFrames. outgoingFrame(Frame frame, WriteCallback callback, BatchMode batchMode)
A frame, and optional callback, intended for the network layer. -
Uses of WriteCallback in org.eclipse.jetty.websocket.client.io
Methods in org.eclipse.jetty.websocket.client.io with parameters of type WriteCallback Modifier and Type Method Description void
WebSocketClientConnection. outgoingFrame(Frame frame, WriteCallback callback, BatchMode batchMode)
Override to set the masker. -
Uses of WriteCallback in org.eclipse.jetty.websocket.common
Classes in org.eclipse.jetty.websocket.common that implement WriteCallback Modifier and Type Class Description static class
BlockingWriteCallback.WriteBlocker
Methods in org.eclipse.jetty.websocket.common with parameters of type WriteCallback Modifier and Type Method Description void
WebSocketSession. outgoingFrame(Frame frame, WriteCallback callback, BatchMode batchMode)
void
WebSocketRemoteEndpoint. sendBytes(java.nio.ByteBuffer data, WriteCallback callback)
void
WebSocketRemoteEndpoint. sendString(java.lang.String text, WriteCallback callback)
void
WebSocketRemoteEndpoint. uncheckedSendFrame(WebSocketFrame frame, WriteCallback callback)
-
Uses of WriteCallback in org.eclipse.jetty.websocket.common.extensions
Methods in org.eclipse.jetty.websocket.common.extensions with parameters of type WriteCallback Modifier and Type Method Description protected void
AbstractExtension. nextOutgoingFrame(Frame frame, WriteCallback callback, BatchMode batchMode)
void
ExtensionStack. outgoingFrame(Frame frame, WriteCallback callback, BatchMode batchMode)
void
FrameCaptureExtension. outgoingFrame(Frame frame, WriteCallback callback, BatchMode batchMode)
-
Uses of WriteCallback in org.eclipse.jetty.websocket.common.extensions.compress
Methods in org.eclipse.jetty.websocket.common.extensions.compress with parameters of type WriteCallback Modifier and Type Method Description protected void
PerMessageDeflateExtension. nextOutgoingFrame(Frame frame, WriteCallback callback, BatchMode batchMode)
protected void
CompressExtension. notifyCallbackFailure(WriteCallback callback, java.lang.Throwable failure)
protected void
CompressExtension. notifyCallbackSuccess(WriteCallback callback)
void
CompressExtension. outgoingFrame(Frame frame, WriteCallback callback, BatchMode batchMode)
-
Uses of WriteCallback in org.eclipse.jetty.websocket.common.extensions.fragment
Methods in org.eclipse.jetty.websocket.common.extensions.fragment with parameters of type WriteCallback Modifier and Type Method Description void
FragmentExtension. outgoingFrame(Frame frame, WriteCallback callback, BatchMode batchMode)
-
Uses of WriteCallback in org.eclipse.jetty.websocket.common.extensions.identity
Methods in org.eclipse.jetty.websocket.common.extensions.identity with parameters of type WriteCallback Modifier and Type Method Description void
IdentityExtension. outgoingFrame(Frame frame, WriteCallback callback, BatchMode batchMode)
-
Uses of WriteCallback in org.eclipse.jetty.websocket.common.io
Classes in org.eclipse.jetty.websocket.common.io that implement WriteCallback Modifier and Type Class Description class
FutureWriteCallback
Allows events to aWriteCallback
to drive aFuture
for the user.Methods in org.eclipse.jetty.websocket.common.io with parameters of type WriteCallback Modifier and Type Method Description boolean
FrameFlusher. enqueue(Frame frame, WriteCallback callback, BatchMode batchMode)
protected void
FrameFlusher. notifyCallbackFailure(WriteCallback callback, java.lang.Throwable failure)
protected void
FrameFlusher. notifyCallbackSuccess(WriteCallback callback)
void
AbstractWebSocketConnection. outgoingFrame(Frame frame, WriteCallback callback, BatchMode batchMode)
Frame from API, User, or Internal implementation destined for network. -
Uses of WriteCallback in org.eclipse.jetty.websocket.common.message
Methods in org.eclipse.jetty.websocket.common.message with parameters of type WriteCallback Modifier and Type Method Description void
MessageOutputStream. setCallback(WriteCallback callback)
void
MessageWriter. setCallback(WriteCallback callback)
-
Uses of WriteCallback in org.eclipse.jetty.websocket.jsr356.messages
Classes in org.eclipse.jetty.websocket.jsr356.messages that implement WriteCallback Modifier and Type Class Description class
SendHandlerWriteCallback
-