Class ClusteredTaskManager.CleanupContinuation
java.lang.Object
com.oracle.coherence.concurrent.executor.ClusteredTaskManager.CleanupContinuation
- All Implemented Interfaces:
Continuation<Object>
,ComposableContinuation
- Enclosing class:
ClusteredTaskManager<T,
A, R>
public class ClusteredTaskManager.CleanupContinuation
extends Object
implements ComposableContinuation
A
ComposableContinuation
to clean up the ClusteredTaskManager
.- Since:
- 21.12
- Author:
- bo
-
Field Summary
FieldsModifier and TypeFieldDescriptionprotected final CacheService
TheCacheService
.protected final String
The task id. -
Constructor Summary
ConstructorsConstructorDescriptionCleanupContinuation
(CacheService cacheService, String sTaskId) Constructs aClusteredTaskManager<T,
.A, R>.CleanupContinuation -
Method Summary
Modifier and TypeMethodDescriptioncompose
(ComposableContinuation continuation) Composes thisComposableContinuation
with the specifiedComposableContinuation
to produce aComposableContinuation
that replaces the need for this and the specifiedComposableContinuation
.void
Resume the execution after the completion of an asynchronous call.toString()
-
Field Details
-
f_cacheService
TheCacheService
. -
f_sTaskId
The task id.
-
-
Constructor Details
-
CleanupContinuation
Constructs aClusteredTaskManager<T,
.A, R>.CleanupContinuation - Parameters:
cacheService
- theCacheService
sTaskId
- theTask
identity
-
-
Method Details
-
proceed
Description copied from interface:Continuation
Resume the execution after the completion of an asynchronous call.- Specified by:
proceed
in interfaceContinuation<Object>
- Parameters:
o
- the result of the execution preceding this continuation
-
compose
Description copied from interface:ComposableContinuation
Composes thisComposableContinuation
with the specifiedComposableContinuation
to produce aComposableContinuation
that replaces the need for this and the specifiedComposableContinuation
.- Specified by:
compose
in interfaceComposableContinuation
- Parameters:
continuation
- theComposableContinuation
to compose- Returns:
- the composed
ComposableContinuation
-
toString
-