Class ClusteredExecutorInfo.ClosingContinuation
- java.lang.Object
-
- com.oracle.coherence.concurrent.executor.ClusteredExecutorInfo.CacheAwareContinuation
-
- com.oracle.coherence.concurrent.executor.ClusteredExecutorInfo.ClosingContinuation
-
- All Implemented Interfaces:
Continuation<Object>,ComposableContinuation
- Enclosing class:
- ClusteredExecutorInfo
public static class ClusteredExecutorInfo.ClosingContinuation extends ClusteredExecutorInfo.CacheAwareContinuation
-
-
Field Summary
Fields Modifier and Type Field Description protected Stringf_sExecutorIdThe unique identity of theExecutor.-
Fields inherited from class com.oracle.coherence.concurrent.executor.ClusteredExecutorInfo.CacheAwareContinuation
f_cacheService
-
-
Constructor Summary
Constructors Constructor Description ClosingContinuation(String sExecutorId, CacheService cacheService)Constructs anClusteredExecutorInfo.ClosingContinuation.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description ComposableContinuationcompose(ComposableContinuation continuation)Composes thisComposableContinuationwith the specifiedComposableContinuationto produce aComposableContinuationthat replaces the need for this and the specifiedComposableContinuation.voidproceed(Object o)Resume the execution after the completion of an asynchronous call.-
Methods inherited from class com.oracle.coherence.concurrent.executor.ClusteredExecutorInfo.CacheAwareContinuation
assignments, executors, tasks
-
-
-
-
Constructor Detail
-
ClosingContinuation
public ClosingContinuation(String sExecutorId, CacheService cacheService)
Constructs anClusteredExecutorInfo.ClosingContinuation.- Parameters:
sExecutorId- theExecutoridentity to updatecacheService- theCacheService
-
-
Method Detail
-
proceed
public void proceed(Object o)
Description copied from interface:ContinuationResume the execution after the completion of an asynchronous call.- Parameters:
o- the result of the execution preceding this continuation
-
compose
public ComposableContinuation compose(ComposableContinuation continuation)
Description copied from interface:ComposableContinuationComposes thisComposableContinuationwith the specifiedComposableContinuationto produce aComposableContinuationthat replaces the need for this and the specifiedComposableContinuation.- Parameters:
continuation- theComposableContinuationto compose- Returns:
- the composed
ComposableContinuation
-
-