Package org.eclipse.jetty.websocket.api
Interface WriteCallback
-
- All Known Implementing Classes:
BlockingWriteCallback.WriteBlocker
,FutureWriteCallback
@Deprecated(since="2021-05-27") public interface WriteCallback
Deprecated.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 void
writeFailed(Throwable x)
Deprecated.Callback invoked when the write fails.void
writeSuccess()
Deprecated.Callback invoked when the write completes.
-
-
-
Method Detail
-
writeFailed
void writeFailed(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)
-
-