Interface WriteCallback
- All Known Implementing Classes:
 WriteCallback.Adaptor
public interface WriteCallback
Callback for Write events.
NOTE: We don't expose org.eclipse.jetty.util.Callback here as that would complicate matters with the WebAppContext's classloader isolation.
- 
Nested Class Summary
Nested Classes - 
Field Summary
Fields - 
Method Summary
Modifier and TypeMethodDescriptiondefault voidCallback invoked when the write fails.default voidCallback invoked when the write succeeds. 
- 
Field Details
- 
NOOP
 
 - 
 - 
Method Details
- 
writeFailed
Callback invoked when the write fails.
- Parameters:
 x- the reason for the write failure
 - 
writeSuccess
default void writeSuccess()Callback invoked when the write succeeds.
- See Also:
 
 
 -