Uses of Interface
org.eclipse.jetty.websocket.api.WriteCallback
Packages that use WriteCallback
Package
Description
Jetty WebSocket API
Jetty WebSocket API : WebSocket Extension API
Jetty WebSocket Client : I/O Implementation [Internal Use Only]
Jetty WebSocket Common : Implementation [Internal Use Only]
Jetty WebSocket Common : Extension Implementations
Jetty WebSocket Common : Message Compression Extension Implementations
Jetty WebSocket Common : Auto Fragment Extension Implementation
Jetty WebSocket Common : Identity Extension Implementation
Jetty WebSocket Common : I/O Implementation
Jetty WebSocket Common : Message Handling
-
Uses of WriteCallback in org.eclipse.jetty.websocket.api
Methods in org.eclipse.jetty.websocket.api with parameters of type WriteCallbackModifier and TypeMethodDescriptionvoidRemoteEndpoint.sendBytes(ByteBuffer data, WriteCallback callback) Initiates the asynchronous transmission of a binary message.voidRemoteEndpoint.sendString(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 WriteCallbackModifier and TypeMethodDescriptionvoidOutgoingFrames.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 WriteCallbackModifier and TypeMethodDescriptionvoidWebSocketClientConnection.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 WriteCallbackFields in org.eclipse.jetty.websocket.common declared as WriteCallbackModifier and TypeFieldDescriptionprivate static final WriteCallbackWebSocketRemoteEndpoint.NOOP_CALLBACKMethods in org.eclipse.jetty.websocket.common that return WriteCallbackModifier and TypeMethodDescriptionprivate static WriteCallbackWebSocketRemoteEndpoint.from(WriteCallback callback, Runnable completed) Methods in org.eclipse.jetty.websocket.common with parameters of type WriteCallbackModifier and TypeMethodDescriptionprivate static WriteCallbackWebSocketRemoteEndpoint.from(WriteCallback callback, Runnable completed) voidWebSocketSession.outgoingFrame(Frame frame, WriteCallback callback, BatchMode batchMode) voidWebSocketRemoteEndpoint.sendBytes(ByteBuffer data, WriteCallback callback) voidWebSocketRemoteEndpoint.sendString(String text, WriteCallback callback) voidWebSocketRemoteEndpoint.uncheckedSendFrame(WebSocketFrame frame, WriteCallback callback) -
Uses of WriteCallback in org.eclipse.jetty.websocket.common.extensions
Classes in org.eclipse.jetty.websocket.common.extensions that implement WriteCallbackFields in org.eclipse.jetty.websocket.common.extensions declared as WriteCallbackMethods in org.eclipse.jetty.websocket.common.extensions with parameters of type WriteCallbackModifier and TypeMethodDescriptionprotected voidAbstractExtension.nextOutgoingFrame(Frame frame, WriteCallback callback, BatchMode batchMode) private voidExtensionStack.Flusher.notifyCallbackFailure(WriteCallback callback, Throwable failure) private voidExtensionStack.Flusher.notifyCallbackSuccess(WriteCallback callback) voidExtensionStack.outgoingFrame(Frame frame, WriteCallback callback, BatchMode batchMode) voidFrameCaptureExtension.outgoingFrame(Frame frame, WriteCallback callback, BatchMode batchMode) Constructors in org.eclipse.jetty.websocket.common.extensions with parameters of type WriteCallbackModifierConstructorDescriptionprivateFrameEntry(Frame frame, WriteCallback callback, BatchMode batchMode) -
Uses of WriteCallback in org.eclipse.jetty.websocket.common.extensions.compress
Classes in org.eclipse.jetty.websocket.common.extensions.compress that implement WriteCallbackFields in org.eclipse.jetty.websocket.common.extensions.compress declared as WriteCallbackModifier and TypeFieldDescriptionprivate final WriteCallbackCompressExtension.FrameEntry.callbackMethods in org.eclipse.jetty.websocket.common.extensions.compress with parameters of type WriteCallbackModifier and TypeMethodDescriptionprotected voidPerMessageDeflateExtension.nextOutgoingFrame(Frame frame, WriteCallback callback, BatchMode batchMode) protected voidCompressExtension.notifyCallbackFailure(WriteCallback callback, Throwable failure) protected voidCompressExtension.notifyCallbackSuccess(WriteCallback callback) voidCompressExtension.outgoingFrame(Frame frame, WriteCallback callback, BatchMode batchMode) Constructors in org.eclipse.jetty.websocket.common.extensions.compress with parameters of type WriteCallbackModifierConstructorDescriptionprivateFrameEntry(Frame frame, WriteCallback callback, BatchMode batchMode) -
Uses of WriteCallback in org.eclipse.jetty.websocket.common.extensions.fragment
Classes in org.eclipse.jetty.websocket.common.extensions.fragment that implement WriteCallbackFields in org.eclipse.jetty.websocket.common.extensions.fragment declared as WriteCallbackModifier and TypeFieldDescriptionprivate final WriteCallbackFragmentExtension.FrameEntry.callbackMethods in org.eclipse.jetty.websocket.common.extensions.fragment with parameters of type WriteCallbackModifier and TypeMethodDescriptionprivate voidFragmentExtension.Flusher.notifyCallbackFailure(WriteCallback callback, Throwable failure) private voidFragmentExtension.Flusher.notifyCallbackSuccess(WriteCallback callback) voidFragmentExtension.outgoingFrame(Frame frame, WriteCallback callback, BatchMode batchMode) Constructors in org.eclipse.jetty.websocket.common.extensions.fragment with parameters of type WriteCallbackModifierConstructorDescriptionprivateFrameEntry(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 WriteCallbackModifier and TypeMethodDescriptionvoidIdentityExtension.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 WriteCallbackModifier and TypeClassDescriptionprivate static classclassAllows events to aWriteCallbackto drive aFuturefor the user.Fields in org.eclipse.jetty.websocket.common.io declared as WriteCallbackMethods in org.eclipse.jetty.websocket.common.io with parameters of type WriteCallbackModifier and TypeMethodDescriptionbooleanFrameFlusher.enqueue(Frame frame, WriteCallback callback, BatchMode batchMode) protected voidFrameFlusher.notifyCallbackFailure(WriteCallback callback, Throwable failure) protected voidFrameFlusher.notifyCallbackSuccess(WriteCallback callback) voidAbstractWebSocketConnection.outgoingFrame(Frame frame, WriteCallback callback, BatchMode batchMode) Frame from API, User, or Internal implementation destined for network.voidFramePipes.Out2In.outgoingFrame(Frame frame, WriteCallback callback, BatchMode batchMode) Constructors in org.eclipse.jetty.websocket.common.io with parameters of type WriteCallbackModifierConstructorDescriptionprivateFrameEntry(Frame frame, WriteCallback callback, BatchMode batchMode) -
Uses of WriteCallback in org.eclipse.jetty.websocket.common.message
Fields in org.eclipse.jetty.websocket.common.message declared as WriteCallbackModifier and TypeFieldDescriptionprivate WriteCallbackMessageOutputStream.callbackprivate WriteCallbackMessageWriter.callbackMethods in org.eclipse.jetty.websocket.common.message with parameters of type WriteCallbackModifier and TypeMethodDescriptionvoidMessageOutputStream.setCallback(WriteCallback callback) voidMessageWriter.setCallback(WriteCallback callback) -
Uses of WriteCallback in org.eclipse.jetty.websocket.jsr356.messages
Classes in org.eclipse.jetty.websocket.jsr356.messages that implement WriteCallback