Uses of Class
org.eclipse.jetty.io.WriteFlusher.State
Packages that use WriteFlusher.State
-
Uses of WriteFlusher.State in org.eclipse.jetty.io
Subclasses of WriteFlusher.State in org.eclipse.jetty.ioModifier and TypeClassDescriptionprivate static class
In CompletingState WriteFlusher is flushing buffers that have not been fully written in write().private static class
In FailedState no more operations are allowed.private static class
In IdleState WriteFlusher is idle and accepts new writesprivate class
In PendingState not all buffers could be written in one go.private static class
In WritingState WriteFlusher is currently writing.Fields in org.eclipse.jetty.io declared as WriteFlusher.StateModifier and TypeFieldDescriptionprivate static final WriteFlusher.State
WriteFlusher.__COMPLETING
private static final WriteFlusher.State
WriteFlusher.__IDLE
private static final WriteFlusher.State
WriteFlusher.__WRITING
Fields in org.eclipse.jetty.io with type parameters of type WriteFlusher.StateModifier and TypeFieldDescriptionprivate final AtomicReference<WriteFlusher.State>
WriteFlusher._state
Methods in org.eclipse.jetty.io with parameters of type WriteFlusher.StateModifier and TypeMethodDescriptionprivate 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.