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.Completingstatic classCallback.NestedNested Completing Callback that completes after completing the nested callbackclassCompletableCallbackDeprecated.not used anymoreclassCountingCallbackA 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(java.lang.Runnable completed)Creaste a callback that runs completed when it succeeds or failsstatic CallbackCallback. from(java.lang.Runnable success, java.util.function.Consumer<java.lang.Throwable> failure)Create a callback from the passed success and failurestatic CallbackCallback. from(java.lang.Runnable completed, Callback callback)Create a nested callback that runs completed before completing the nested callback.static CallbackCallback. from(java.util.concurrent.CompletableFuture<?> completable)Creates a non-blocking callback from the given incomplete CompletableFuture.static CallbackCallback. from(java.util.concurrent.CompletableFuture<?> completable, Invocable.InvocationType invocation)Creates a callback from the given incomplete CompletableFuture, with the givenblockingcharacteristic.static CallbackCallback. from(Callback callback, java.lang.Runnable completed)Create a nested callback that runs completed after completing the nested callback.CallbackCallback.Nested. getCallback()Methods in org.eclipse.jetty.util with parameters of type Callback Modifier and Type Method Description static CallbackCallback. from(java.lang.Runnable completed, Callback callback)Create a nested callback that runs completed before completing the nested callback.static CallbackCallback. from(Callback callback, java.lang.Runnable completed)Create a nested callback that runs completed after completing the nested callback.Constructors in org.eclipse.jetty.util with parameters of type Callback Constructor Description CountingCallback(Callback callback, int count)IteratingNestedCallback(Callback callback)Nested(Callback callback)
-