Infinispan Distribution 5.2.6.Final-redhat-2

Uses of Interface
org.infinispan.notifications.cachelistener.CacheNotifier

Packages that use CacheNotifier
org.infinispan This is the core of Infinispan, a distributed, transactional, highly scalable data grid platform. 
org.infinispan.commands Commands that operate on the cache, either locally or remotely. 
org.infinispan.commands.tx Commands that represent transactional lifecycle transitions. 
org.infinispan.commands.write Commands that alter the state of the cache. 
org.infinispan.container Data containers which store cache entries. 
org.infinispan.eviction Classes related to eviction. 
org.infinispan.interceptors Infinispan is designed around a set of interceptors around a data container. 
org.infinispan.interceptors.locking   
org.infinispan.notifications.cachelistener Cache-specific notifications and eventing. 
org.infinispan.statetransfer Transfer of state to new caches in a cluster. 
org.infinispan.transaction JTA transaction support. 
 

Uses of CacheNotifier in org.infinispan
 

Fields in org.infinispan declared as CacheNotifier
protected  CacheNotifier CacheImpl.notifier
           
 

Methods in org.infinispan with parameters of type CacheNotifier
 void CacheImpl.injectDependencies(EvictionManager evictionManager, InvocationContextContainer icc, CommandsFactory commandsFactory, InterceptorChain interceptorChain, Configuration configuration, CacheNotifier notifier, ComponentRegistry componentRegistry, TransactionManager transactionManager, BatchContainer batchContainer, RpcManager rpcManager, DataContainer dataContainer, StreamingMarshaller marshaller, ResponseGenerator responseGenerator, DistributionManager distributionManager, EmbeddedCacheManager cacheManager, ExecutorService asyncExecutor, TransactionTable txTable, RecoveryManager recoveryManager, TransactionCoordinator txCoordinator, LockManager lockManager, GlobalConfiguration globalCfg)
           
 

Uses of CacheNotifier in org.infinispan.commands
 

Methods in org.infinispan.commands with parameters of type CacheNotifier
 void CommandsFactoryImpl.setupDependencies(DataContainer container, CacheNotifier notifier, Cache<Object,Object> cache, InterceptorChain interceptorChain, DistributionManager distributionManager, InvocationContextContainer icc, TransactionTable txTable, Configuration configuration, Map<Byte,ModuleCommandInitializer> moduleCommandInitializers, RecoveryManager recoveryManager, StateProvider stateProvider, StateConsumer stateConsumer, LockManager lockManager, InternalEntryFactory entryFactory, MapReduceManager mapReduceManager, StateTransferManager stm, BackupSender backupSender, CancellationService cancellationService)
           
 

Uses of CacheNotifier in org.infinispan.commands.tx
 

Fields in org.infinispan.commands.tx declared as CacheNotifier
protected  CacheNotifier PrepareCommand.notifier
           
 

Methods in org.infinispan.commands.tx with parameters of type CacheNotifier
 void PrepareCommand.initialize(CacheNotifier notifier, RecoveryManager recoveryManager)
           
 

Uses of CacheNotifier in org.infinispan.commands.write
 

Fields in org.infinispan.commands.write declared as CacheNotifier
protected  CacheNotifier RemoveCommand.notifier
           
 

Methods in org.infinispan.commands.write with parameters of type CacheNotifier
 void PutKeyValueCommand.init(CacheNotifier notifier)
           
 void ClearCommand.init(CacheNotifier notifier)
           
 void ReplaceCommand.init(CacheNotifier notifier)
           
 void RemoveCommand.init(CacheNotifier notifier)
           
 void PutMapCommand.init(CacheNotifier notifier)
           
 void InvalidateL1Command.init(Configuration config, DistributionManager dm, CacheNotifier n, DataContainer dc)
           
 

Constructors in org.infinispan.commands.write with parameters of type CacheNotifier
ClearCommand(CacheNotifier notifier, Set<Flag> flags)
           
EvictCommand(Object key, CacheNotifier notifier, Set<Flag> flags)
           
InvalidateCommand(CacheNotifier notifier, Set<Flag> flags, Collection<Object> keys)
           
InvalidateCommand(CacheNotifier notifier, Set<Flag> flags, Object... keys)
           
InvalidateL1Command(Address writeOrigin, boolean forRehash, DataContainer dc, Configuration config, DistributionManager dm, CacheNotifier notifier, Set<Flag> flags, Collection<Object> keys)
           
InvalidateL1Command(boolean forRehash, DataContainer dc, Configuration config, DistributionManager dm, CacheNotifier notifier, Set<Flag> flags, Collection<Object> keys)
           
InvalidateL1Command(boolean forRehash, DataContainer dc, Configuration config, DistributionManager dm, CacheNotifier notifier, Set<Flag> flags, Object... keys)
           
PutKeyValueCommand(Object key, Object value, boolean putIfAbsent, CacheNotifier notifier, long lifespanMillis, long maxIdleTimeMillis, Set<Flag> flags)
           
PutMapCommand(Map<?,?> map, CacheNotifier notifier, long lifespanMillis, long maxIdleTimeMillis, Set<Flag> flags)
           
RemoveCommand(Object key, Object value, CacheNotifier notifier, Set<Flag> flags)
           
ReplaceCommand(Object key, Object oldValue, Object newValue, CacheNotifier notifier, long lifespanMillis, long maxIdleTimeMillis, Set<Flag> flags)
           
VersionedPutKeyValueCommand(Object key, Object value, boolean putIfAbsent, CacheNotifier notifier, long lifespanMillis, long maxIdleTimeMillis, Set<Flag> flags, EntryVersion version)
           
 

Uses of CacheNotifier in org.infinispan.container
 

Methods in org.infinispan.container with parameters of type CacheNotifier
 void EntryFactoryImpl.injectDependencies(DataContainer dataContainer, Configuration configuration, CacheNotifier notifier)
           
 

Uses of CacheNotifier in org.infinispan.eviction
 

Methods in org.infinispan.eviction with parameters of type CacheNotifier
 void EvictionManagerImpl.initialize(ScheduledExecutorService executor, Cache cache, Configuration cfg, DataContainer dataContainer, CacheLoaderManager cacheLoaderManager, CacheNotifier cacheNotifier)
           
 void PassivationManagerImpl.inject(CacheLoaderManager cacheLoaderManager, CacheNotifier notifier, Configuration cfg, DataContainer container)
           
 

Uses of CacheNotifier in org.infinispan.interceptors
 

Fields in org.infinispan.interceptors declared as CacheNotifier
protected  CacheNotifier CacheLoaderInterceptor.notifier
           
 

Methods in org.infinispan.interceptors with parameters of type CacheNotifier
 void CallInterceptor.inject(CacheNotifier notifier)
           
protected  void CacheLoaderInterceptor.injectDependencies(CacheLoaderManager clm, EntryFactory entryFactory, CacheNotifier notifier)
           
 void NotificationInterceptor.injectDependencies(CacheNotifier notifier)
           
 

Uses of CacheNotifier in org.infinispan.interceptors.locking
 

Fields in org.infinispan.interceptors.locking declared as CacheNotifier
protected  CacheNotifier ClusteringDependentLogic.AbstractClusteringDependentLogic.notifier
           
 

Methods in org.infinispan.interceptors.locking with parameters of type CacheNotifier
 void ClusteringDependentLogic.AbstractClusteringDependentLogic.init(DataContainer dataContainer, CacheNotifier notifier)
           
 

Uses of CacheNotifier in org.infinispan.notifications.cachelistener
 

Classes in org.infinispan.notifications.cachelistener that implement CacheNotifier
 class CacheNotifierImpl
          Helper class that handles all notifications to registered listeners.
 

Uses of CacheNotifier in org.infinispan.statetransfer
 

Methods in org.infinispan.statetransfer with parameters of type CacheNotifier
 void StateProviderImpl.init(Cache cache, ExecutorService executorService, Configuration configuration, RpcManager rpcManager, CommandsFactory commandsFactory, CacheNotifier cacheNotifier, CacheLoaderManager cacheLoaderManager, DataContainer dataContainer, TransactionTable transactionTable, StateTransferLock stateTransferLock, StateConsumer stateConsumer)
           
 void StateConsumerImpl.init(Cache cache, ExecutorService executorService, StateTransferManager stateTransferManager, InterceptorChain interceptorChain, InvocationContextContainer icc, Configuration configuration, RpcManager rpcManager, TransactionManager transactionManager, CommandsFactory commandsFactory, CacheLoaderManager cacheLoaderManager, DataContainer dataContainer, TransactionTable transactionTable, StateTransferLock stateTransferLock, CacheNotifier cacheNotifier)
           
 void StateTransferManagerImpl.init(StateConsumer stateConsumer, StateProvider stateProvider, Cache cache, CacheNotifier cacheNotifier, Configuration configuration, GlobalConfiguration globalConfiguration, RpcManager rpcManager, GroupManager groupManager, LocalTopologyManager localTopologyManager)
           
 

Uses of CacheNotifier in org.infinispan.transaction
 

Methods in org.infinispan.transaction with parameters of type CacheNotifier
 void TransactionTable.initialize(RpcManager rpcManager, Configuration configuration, InvocationContextContainer icc, InterceptorChain invoker, CacheNotifier notifier, TransactionFactory gtf, TransactionCoordinator txCoordinator, TransactionSynchronizationRegistry transactionSynchronizationRegistry, CommandsFactory commandsFactory, ClusteringDependentLogic clusteringDependentLogic, Cache cache)
           
 


Infinispan Distribution 5.2.6.Final-redhat-2

Copyright © 2013 JBoss, a division of Red Hat. All Rights Reserved.