- Direct Known Subclasses:
IteratingNestedCallback
A typical example is the write of a large content to a socket, divided in chunks. Chunk C1 is written by thread T1, which also invokes the callback, which writes chunk C2, which invokes the callback again, which writes chunk C3, and so forth.
The problem with the example is that if the callback thread is the same that performs the I/O operation, then the process is recursive and may result in a stack overflow. To avoid the stack overflow, a thread dispatch must be performed, causing context switching and cache misses, affecting performance.
To avoid this issue, this callback uses an AtomicReference to record whether success callback has been called during the processing of a sub task, and if so then the processing iterates rather than recurring.
Subclasses must implement method process() where the sub
task is executed and a suitable IteratingCallback.Action is
returned to this callback to indicate the overall progress of the job.
This callback is passed to the asynchronous execution of each sub
task and a call the succeeded() on this callback represents
the completion of the sub task.
-
Nested Class Summary
Nested ClassesModifier and TypeClassDescriptionprotected static enumThe indication of the overall progress of the overall job that implementations ofprocess()must return.Nested classes/interfaces inherited from interface org.eclipse.jetty.util.Callback
Callback.Completable, Callback.Completing, Callback.NestedNested classes/interfaces inherited from interface org.eclipse.jetty.util.thread.Invocable
Invocable.InvocationType, Invocable.ReadyTask, Invocable.Task -
Field Summary
Fields inherited from interface org.eclipse.jetty.util.thread.Invocable
__nonBlocking -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoidclose()voidInvoked when the sub task fails.booleanisClosed()booleanisFailed()booleanvoiditerate()This method must be invoked by applications to start the processing of sub tasks.protected voidonCompleteFailure(Throwable cause) Invoked when the overall task has completed with a failure.protected voidInvoked when the overall task has completed successfully.protected abstract IteratingCallback.Actionprocess()Method called byiterate()to process the sub task.booleanreset()Resets this callback.voidInvoked when the sub task succeeds.toString()Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, waitMethods inherited from interface org.eclipse.jetty.util.Callback
completeWithMethods inherited from interface org.eclipse.jetty.util.thread.Invocable
getInvocationType
-
Constructor Details
-
IteratingCallback
protected IteratingCallback() -
IteratingCallback
protected IteratingCallback(boolean needReset)
-
-
Method Details
-
process
Method called byiterate()to process the sub task.Implementations must start the asynchronous execution of the sub task (if any) and return an appropriate action:
IteratingCallback.Action.IDLEwhen no sub tasks are available for execution but the overall job is not completed yetIteratingCallback.Action.SCHEDULEDwhen the sub task asynchronous execution has been startedIteratingCallback.Action.SUCCEEDEDwhen the overall job is completed
- Returns:
- the appropriate Action
- Throws:
Throwable- if the sub task processing throws
-
onCompleteSuccess
protected void onCompleteSuccess()Invoked when the overall task has completed successfully.- See Also:
-
onCompleteFailure
Invoked when the overall task has completed with a failure.- Parameters:
cause- the throwable to indicate cause of failure- See Also:
-
iterate
public void iterate()This method must be invoked by applications to start the processing of sub tasks. It can be called at any time by any thread, and it's contract is that when called, then theprocess()method will be called during or soon after, either by the calling thread or by another thread. -
succeeded
public void succeeded()Invoked when the sub task succeeds. Subclasses that override this method must always remember to callsuper.succeeded(). -
failed
Invoked when the sub task fails. Subclasses that override this method must always remember to callsuper.failed(Throwable). -
close
public void close() -
isClosed
public boolean isClosed() -
isFailed
public boolean isFailed()- Returns:
- whether this callback has failed
-
isSucceeded
public boolean isSucceeded()- Returns:
- whether this callback has succeeded
-
reset
public boolean reset()Resets this callback.A callback can only be reset to IDLE from the SUCCEEDED or FAILED states or if it is already IDLE.
- Returns:
- true if the reset was successful
-
toString
-