Package org.eclipse.jetty.util
Class Callback.Completable
- java.lang.Object
-
- java.util.concurrent.CompletableFuture<java.lang.Void>
-
- org.eclipse.jetty.util.Callback.Completable
-
- All Implemented Interfaces:
java.util.concurrent.CompletionStage<java.lang.Void>
,java.util.concurrent.Future<java.lang.Void>
,Callback
,Invocable
- Enclosing interface:
- Callback
@Deprecated(since="2021-05-27") public static class Callback.Completable extends java.util.concurrent.CompletableFuture<java.lang.Void> implements Callback
Deprecated.The Eclipse Jetty and Apache Felix Http Jetty packages are no longer supported.A CompletableFuture that is also a Callback.
-
-
Nested Class Summary
-
Nested classes/interfaces inherited from class java.util.concurrent.CompletableFuture
java.util.concurrent.CompletableFuture.AsynchronousCompletionTask
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.Callback
Callback.Completable, Callback.Completing, Callback.Nested
-
Nested classes/interfaces inherited from interface org.eclipse.jetty.util.thread.Invocable
Invocable.InvocationType
-
-
Field Summary
-
Fields inherited from interface org.eclipse.jetty.util.thread.Invocable
__nonBlocking
-
-
Constructor Summary
Constructors Constructor Description Completable()
Deprecated.Completable(Invocable.InvocationType invocation)
Deprecated.
-
Method Summary
All Methods Instance Methods Concrete Methods Deprecated Methods Modifier and Type Method Description void
failed(java.lang.Throwable x)
Deprecated.Callback invoked when the operation fails.Invocable.InvocationType
getInvocationType()
Deprecated.void
succeeded()
Deprecated.Callback invoked when the operation completes.-
Methods inherited from class java.util.concurrent.CompletableFuture
acceptEither, acceptEitherAsync, acceptEitherAsync, allOf, anyOf, applyToEither, applyToEitherAsync, applyToEitherAsync, cancel, complete, completeAsync, completeAsync, completedFuture, completedStage, completeExceptionally, completeOnTimeout, copy, defaultExecutor, delayedExecutor, delayedExecutor, exceptionally, failedFuture, failedStage, get, get, getNow, getNumberOfDependents, handle, handleAsync, handleAsync, isCancelled, isCompletedExceptionally, isDone, join, minimalCompletionStage, newIncompleteFuture, obtrudeException, obtrudeValue, orTimeout, runAfterBoth, runAfterBothAsync, runAfterBothAsync, runAfterEither, runAfterEitherAsync, runAfterEitherAsync, runAsync, runAsync, supplyAsync, supplyAsync, thenAccept, thenAcceptAsync, thenAcceptAsync, thenAcceptBoth, thenAcceptBothAsync, thenAcceptBothAsync, thenApply, thenApplyAsync, thenApplyAsync, thenCombine, thenCombineAsync, thenCombineAsync, thenCompose, thenComposeAsync, thenComposeAsync, thenRun, thenRunAsync, thenRunAsync, toCompletableFuture, toString, whenComplete, whenCompleteAsync, whenCompleteAsync
-
-
-
-
Constructor Detail
-
Completable
public Completable()
Deprecated.
-
Completable
public Completable(Invocable.InvocationType invocation)
Deprecated.
-
-
Method Detail
-
succeeded
public void succeeded()
Deprecated.Description copied from interface:Callback
Callback invoked when the operation completes.
- Specified by:
succeeded
in interfaceCallback
- See Also:
Callback.failed(Throwable)
-
failed
public void failed(java.lang.Throwable x)
Deprecated.Description copied from interface:Callback
Callback invoked when the operation fails.
-
getInvocationType
public Invocable.InvocationType getInvocationType()
Deprecated.- Specified by:
getInvocationType
in interfaceInvocable
- Returns:
- The InvocationType of this object
-
-