Package org.eclipse.jetty.websocket.api
Interface WriteCallback
-
- All Known Implementing Classes:
BlockingWriteCallback.WriteBlocker,FutureWriteCallback
@Deprecated(since="2021-05-27") public interface WriteCallbackDeprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.Callback for Write events.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Deprecated Methods Modifier and Type Method Description voidwriteFailed(java.lang.Throwable x)Deprecated.Callback invoked when the write fails.voidwriteSuccess()Deprecated.Callback invoked when the write completes.
-
-
-
Method Detail
-
writeFailed
void writeFailed(java.lang.Throwable x)
Deprecated.Callback invoked when the write fails.
- Parameters:
x- the reason for the write failure
-
writeSuccess
void writeSuccess()
Deprecated.Callback invoked when the write completes.
- See Also:
writeFailed(Throwable)
-
-