Uses of Class
org.eclipse.jetty.io.WriteFlusher.State
-
Packages that use WriteFlusher.State Package Description org.eclipse.jetty.io Jetty IO : Core classes for Jetty IO subsystem -
-
Uses of WriteFlusher.State in org.eclipse.jetty.io
Subclasses of WriteFlusher.State in org.eclipse.jetty.io Modifier and Type Class Description private static class
WriteFlusher.CompletingState
In CompletingState WriteFlusher is flushing buffers that have not been fully written in write().private static class
WriteFlusher.FailedState
In FailedState no more operations are allowed.private static class
WriteFlusher.IdleState
In IdleState WriteFlusher is idle and accepts new writesprivate class
WriteFlusher.PendingState
In PendingState not all buffers could be written in one go.private static class
WriteFlusher.WritingState
In WritingState WriteFlusher is currently writing.Fields in org.eclipse.jetty.io declared as WriteFlusher.State Modifier and Type Field Description private static WriteFlusher.State
WriteFlusher. __COMPLETING
private static WriteFlusher.State
WriteFlusher. __IDLE
private static WriteFlusher.State
WriteFlusher. __WRITING
Fields in org.eclipse.jetty.io with type parameters of type WriteFlusher.State Modifier and Type Field Description private java.util.concurrent.atomic.AtomicReference<WriteFlusher.State>
WriteFlusher. _state
Methods in org.eclipse.jetty.io with parameters of type WriteFlusher.State Modifier and Type Method Description private boolean
WriteFlusher. isTransitionAllowed(WriteFlusher.State currentState, WriteFlusher.State newState)
private boolean
WriteFlusher. updateState(WriteFlusher.State previous, WriteFlusher.State next)
Tries to update the current state to the given new state.
-