Class MultiClusterEventCallable<K,V>
- java.lang.Object
-
- org.infinispan.notifications.cachelistener.cluster.MultiClusterEventCallable<K,V>
-
- All Implemented Interfaces:
java.util.concurrent.Callable<java.lang.Void>,DistributedCallable<K,V,java.lang.Void>
public class MultiClusterEventCallable<K,V> extends java.lang.Object implements DistributedCallable<K,V,java.lang.Void>
This DistributedCallable is used to invoke a raised notification on the cluster listener that registered to listen for this event.- Since:
- 7.0
- Author:
- wburns
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static classMultiClusterEventCallable.Externalizer
-
Constructor Summary
Constructors Constructor Description MultiClusterEventCallable(java.util.Map<java.util.UUID,java.util.Collection<ClusterEvent<K,V>>> events)
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.Voidcall()voidsetEnvironment(Cache<K,V> cache, java.util.Set<K> inputKeys)Invoked by execution environment after DistributedCallable has been migrated for execution to a specific Infinispan node.
-
-
-
Constructor Detail
-
MultiClusterEventCallable
public MultiClusterEventCallable(java.util.Map<java.util.UUID,java.util.Collection<ClusterEvent<K,V>>> events)
-
-
Method Detail
-
call
public java.lang.Void call() throws java.lang.Exception- Specified by:
callin interfacejava.util.concurrent.Callable<K>- Throws:
java.lang.Exception
-
setEnvironment
public void setEnvironment(Cache<K,V> cache, java.util.Set<K> inputKeys)
Description copied from interface:DistributedCallableInvoked by execution environment after DistributedCallable has been migrated for execution to a specific Infinispan node.- Specified by:
setEnvironmentin interfaceDistributedCallable<K,V,java.lang.Void>- Parameters:
cache- cache whose keys are used as input data for this DistributedCallable taskinputKeys- keys used as input for this DistributedCallable task
-
-