Uses of Interface
org.eclipse.jetty.util.Callback
-
Packages that use Callback Package Description org.eclipse.jetty.util Jetty Util : Common Utility Classes -
-
Uses of Callback in org.eclipse.jetty.util
Classes in org.eclipse.jetty.util that implement Callback Modifier and Type Class Description static classCallback.CompletableA CompletableFuture that is also a Callback.static classCallback.NestedclassCompletableCallbackA callback to be used by driver code that needs to know whether the callback has been succeeded or failed (that is, completed) just after the asynchronous operation or not, typically because further processing depends on the callback being completed.classCountingCallbackA callback wrapper that succeeds the wrapped callback when the count is reached, or on first failure.classFutureCallbackclassIteratingCallbackThis specialized callback implements a pattern that allows a large job to be broken into smaller tasks using iteration rather than recursion.classIteratingNestedCallbackIterating Nested Callback.classSharedBlockingCallback.BlockerA Closeable Callback.Fields in org.eclipse.jetty.util declared as Callback Modifier and Type Field Description static CallbackCallback. NOOPInstance of Adapter that can be used when the callback methods need an empty implementation without incurring in the cost of allocating a new Adapter object.Methods in org.eclipse.jetty.util that return Callback Modifier and Type Method Description static CallbackCallback. from(CompletableFuture<?> completable)Creates a non-blocking callback from the given incomplete CompletableFuture.static CallbackCallback. from(CompletableFuture<?> completable, Invocable.InvocationType invocation)Creates a callback from the given incomplete CompletableFuture, with the givenblockingcharacteristic.CallbackCallback.Nested. getCallback()Constructors in org.eclipse.jetty.util with parameters of type Callback Constructor Description CountingCallback(Callback callback, int count)IteratingNestedCallback(Callback callback)Nested(Callback callback)
-