Class StreamingAsynchronousProcessor<K,V,R>
- java.lang.Object
-
- com.tangosol.util.AsynchronousAgent<T>
-
- com.tangosol.util.processor.AbstractAsynchronousProcessor<K,V,R,Void>
-
- com.tangosol.util.processor.StreamingAsynchronousProcessor<K,V,R>
-
- Type Parameters:
K
- the type of the Map entry keyV
- the type of the Map entry valueR
- the type of value returned by the EntryProcessor
- All Implemented Interfaces:
FlowControl
,InvocableMap.EntryProcessor<K,V,R>
,Serializable
,Future<Void>
public class StreamingAsynchronousProcessor<K,V,R> extends AbstractAsynchronousProcessor<K,V,R,Void>
AnEntryProcessor
wrapper class that allows for an asynchronous invocation of the underlying processor. UnlikeAsynchronousProcessor
, this implementation does not collect the results of the underlying entry processor execution, but simply streams partial results to the provided partial results callback.This allows for a much lower memory overhead if the complete result set does not to be realized on the client.
It's very important that the overriding implementations of
onComplete()
,onResult(java.util.Map.Entry<K, R>)
andonException(java.lang.Throwable)
, and provided callbacks must be non-blocking. For example, any use ofNamedCache
API is completely disallowed, with the only exception of asynchronous agents with disabled flow control.The underlying entry processor is guaranteed to have been fully executed when
onComplete()
is called.Note 1: Neither this class nor its extensions need to be serializable. Only the underlying processor is serialized and sent to corresponding servers for execution.
Note 2: This feature is not available on Coherence*Extend clients.- Author:
- as 2015.01.28
- See Also:
AsynchronousProcessor
,SingleEntryAsynchronousProcessor
, Serialized Form
-
-
Field Summary
Fields Modifier and Type Field Description protected Consumer<? super Map.Entry<? extends K,? extends R>>
f_onPartial
The user-provided callback that will be invoked for each partial result.-
Fields inherited from class com.tangosol.util.processor.AbstractAsynchronousProcessor
f_processor
-
Fields inherited from class com.tangosol.util.AsynchronousAgent
m_control, m_iOrderId
-
-
Constructor Summary
Constructors Constructor Description StreamingAsynchronousProcessor(InvocableMap.EntryProcessor<K,V,R> processor, int iUnitOrderId, Consumer<? super Map.Entry<? extends K,? extends R>> onPartial)
Construct a StreamingAsynchronousProcessor for a given processor and one or more callbacks.StreamingAsynchronousProcessor(InvocableMap.EntryProcessor<K,V,R> processor, int iUnitOrderId, Consumer<? super Map.Entry<? extends K,? extends R>> onPartial, Executor executor)
Construct a StreamingAsynchronousProcessor for a given processor and one or more callbacks.StreamingAsynchronousProcessor(InvocableMap.EntryProcessor<K,V,R> processor, Consumer<? super Map.Entry<? extends K,? extends R>> onPartial)
Construct a StreamingAsynchronousProcessor for a given processor and one or more callbacks.StreamingAsynchronousProcessor(InvocableMap.EntryProcessor<K,V,R> processor, Consumer<? super Map.Entry<? extends K,? extends R>> onPartial, Executor executor)
Construct a StreamingAsynchronousProcessor for a given processor and one or more callbacks.
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description void
onComplete()
Called after the processor has been notified about all possible partial results or failures and no more are forthcoming.void
onException(Throwable eReason)
Called if any part of the operation failed for any reason.void
onResult(Map.Entry<K,R> entry)
Called when there is a partial result of the asynchronous execution.-
Methods inherited from class com.tangosol.util.processor.AbstractAsynchronousProcessor
getProcessor, getUnitOfOrderId, process, processAll
-
Methods inherited from class com.tangosol.util.AsynchronousAgent
bind, cancel, checkBacklog, complete, completeExceptionally, drainBacklog, flush, get, get, getCompletableFuture, getException, getResult, isCancelled, isCompletedExceptionally, isDone
-
-
-
-
Constructor Detail
-
StreamingAsynchronousProcessor
public StreamingAsynchronousProcessor(InvocableMap.EntryProcessor<K,V,R> processor, Consumer<? super Map.Entry<? extends K,? extends R>> onPartial)
Construct a StreamingAsynchronousProcessor for a given processor and one or more callbacks.Important Note: All provided callbacks must be non-blocking. For example, any use of
NamedCache
API is completely disallowed.- Parameters:
processor
- the underlyingInvocableMap.EntryProcessor
onPartial
- a user-defined callback that will be called for each partial result
-
StreamingAsynchronousProcessor
public StreamingAsynchronousProcessor(InvocableMap.EntryProcessor<K,V,R> processor, Consumer<? super Map.Entry<? extends K,? extends R>> onPartial, Executor executor)
Construct a StreamingAsynchronousProcessor for a given processor and one or more callbacks.Important Note: All provided callbacks must be non-blocking. For example, any use of
NamedCache
API is completely disallowed.- Parameters:
processor
- the underlyingInvocableMap.EntryProcessor
onPartial
- a user-defined callback that will be called for each partial resultexecutor
- an optionalExecutor
to complete the future on, if not provided theDaemons.commonPool()
is used
-
StreamingAsynchronousProcessor
public StreamingAsynchronousProcessor(InvocableMap.EntryProcessor<K,V,R> processor, int iUnitOrderId, Consumer<? super Map.Entry<? extends K,? extends R>> onPartial)
Construct a StreamingAsynchronousProcessor for a given processor and one or more callbacks.Important Note: All provided callbacks must be non-blocking. For example, any use of
NamedCache
API is completely disallowed.- Parameters:
processor
- the underlyingInvocableMap.EntryProcessor
iUnitOrderId
- the unit-of-order id for this processoronPartial
- a user-defined callback that will be called for each partial result
-
StreamingAsynchronousProcessor
public StreamingAsynchronousProcessor(InvocableMap.EntryProcessor<K,V,R> processor, int iUnitOrderId, Consumer<? super Map.Entry<? extends K,? extends R>> onPartial, Executor executor)
Construct a StreamingAsynchronousProcessor for a given processor and one or more callbacks.Important Note: All provided callbacks must be non-blocking. For example, any use of
NamedCache
API is completely disallowed.- Parameters:
processor
- the underlyingInvocableMap.EntryProcessor
iUnitOrderId
- the unit-of-order id for this processoronPartial
- a user-defined callback that will be called for each partial resultexecutor
- an optionalExecutor
to complete the future on, if not provided theDaemons.commonPool()
is used
-
-
Method Detail
-
onResult
public void onResult(Map.Entry<K,R> entry)
Description copied from class:AbstractAsynchronousProcessor
Called when there is a partial result of the asynchronous execution.For a given request, calls to this method and
AbstractAsynchronousProcessor.onException(java.lang.Throwable)
may come concurrently.For ordering guarantees across different processor invocations see
AbstractAsynchronousProcessor.getUnitOfOrderId()
.Note: Overriding implementations of this method must be non-blocking.
-
onException
public void onException(Throwable eReason)
Description copied from class:AbstractAsynchronousProcessor
Called if any part of the operation failed for any reason. For operations that span multiple partitions this method could be called more than once. However, unless subclasses override this method, any failure will"complete"
the operation.Note: Overriding implementations of this method must be non-blocking.
- Specified by:
onException
in classAbstractAsynchronousProcessor<K,V,R,Void>
- Parameters:
eReason
- the reason of failure
-
onComplete
public void onComplete()
Description copied from class:AbstractAsynchronousProcessor
Called after the processor has been notified about all possible partial results or failures and no more are forthcoming. As long as this processor was submitted to any ofInvocableMap
's methods, this method is guaranteed to be called once and only once.Possible call back sequences are:
cache.invoke ... onResult onComplete cache.invoke ... onException onComplete cache.invokeAll ... onResult onException onException onResult onComplete
For ordering guarantees across processors seeAbstractAsynchronousProcessor.getUnitOfOrderId()
.Note: Overriding implementations of this method must be non-blocking.
- Specified by:
onComplete
in classAbstractAsynchronousProcessor<K,V,R,Void>
-
-