Package | Description |
---|---|
org.eclipse.jetty.io |
Jetty IO : Core classes for Jetty IO subsystem
|
Modifier and Type | Class and 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 writes
|
private 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.
|
Modifier and Type | Field and Description |
---|---|
private static WriteFlusher.State |
WriteFlusher.__COMPLETING |
private static WriteFlusher.State |
WriteFlusher.__IDLE |
private static WriteFlusher.State |
WriteFlusher.__WRITING |
Modifier and Type | Field and Description |
---|---|
private java.util.concurrent.atomic.AtomicReference<WriteFlusher.State> |
WriteFlusher._state |
Modifier and Type | Method and 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.
|