Infinispan Distribution 5.2.6.Final-redhat-2

Uses of Interface
org.infinispan.commands.CommandsFactory

Packages that use CommandsFactory
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.remote Meta-commands that wrap other commands for remote execution. 
org.infinispan.distexec   
org.infinispan.distribution Classes relating to the distributed cache mode. 
org.infinispan.factories Factories are internal components used to create other components based on a cache's configuration. 
org.infinispan.interceptors Infinispan is designed around a set of interceptors around a data container. 
org.infinispan.interceptors.distribution   
org.infinispan.interceptors.locking   
org.infinispan.remoting Remote communication between cache instances. 
org.infinispan.remoting.rpc Remote Procedure Call (RPC) interfaces and components used to invoke remote methods on cache instances. 
org.infinispan.statetransfer Transfer of state to new caches in a cluster. 
org.infinispan.transaction JTA transaction support. 
org.infinispan.transaction.synchronization   
org.infinispan.transaction.xa XA transaction support. 
org.infinispan.transaction.xa.recovery   
 

Uses of CommandsFactory in org.infinispan
 

Fields in org.infinispan declared as CommandsFactory
protected  CommandsFactory CacheImpl.commandsFactory
           
 

Methods in org.infinispan with parameters of type CommandsFactory
 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 CommandsFactory in org.infinispan.commands
 

Classes in org.infinispan.commands that implement CommandsFactory
 class CommandsFactoryImpl
           
 

Uses of CommandsFactory in org.infinispan.commands.remote
 

Methods in org.infinispan.commands.remote with parameters of type CommandsFactory
 void ClusteredGetCommand.initialize(InvocationContextContainer icc, CommandsFactory commandsFactory, InternalEntryFactory entryFactory, InterceptorChain interceptorChain, DistributionManager distributionManager, TransactionTable txTable)
           
 

Uses of CommandsFactory in org.infinispan.distexec
 

Fields in org.infinispan.distexec declared as CommandsFactory
protected  CommandsFactory DefaultExecutorService.factory
           
 

Uses of CommandsFactory in org.infinispan.distribution
 

Methods in org.infinispan.distribution with parameters of type CommandsFactory
 void L1ManagerImpl.init(Configuration configuration, RpcManager rpcManager, CommandsFactory commandsFactory, ExecutorService asyncTransportExecutor, ScheduledExecutorService scheduledExecutor)
           
 

Uses of CommandsFactory in org.infinispan.factories
 

Methods in org.infinispan.factories that return CommandsFactory
 CommandsFactory ComponentRegistry.getCommandsFactory()
          Caching shortcut for #getLocalComponent(CommandsFactory.class);
 

Uses of CommandsFactory in org.infinispan.interceptors
 

Fields in org.infinispan.interceptors declared as CommandsFactory
protected  CommandsFactory ClusteringInterceptor.cf
           
 

Methods in org.infinispan.interceptors with parameters of type CommandsFactory
 void EntryWrappingInterceptor.init(EntryFactory entryFactory, DataContainer dataContainer, ClusteringDependentLogic cdl, CommandsFactory commandFactory, StateConsumer stateConsumer)
           
 void InvalidationInterceptor.injectDependencies(CommandsFactory commandsFactory)
           
 void ClusteringInterceptor.injectDependencies(CommandsFactory cf, EntryFactory entryFactory, LockManager lockManager, DataContainer dataContainer, StateTransferManager stateTransferManager)
           
 

Uses of CommandsFactory in org.infinispan.interceptors.distribution
 

Methods in org.infinispan.interceptors.distribution with parameters of type CommandsFactory
 void L1NonTxInterceptor.init(L1Manager l1Manager, ClusteringDependentLogic cdl, LockManager lockManager, EntryFactory entryFactory, CommandsFactory cf)
           
 

Uses of CommandsFactory in org.infinispan.interceptors.locking
 

Methods in org.infinispan.interceptors.locking with parameters of type CommandsFactory
 void PessimisticLockingInterceptor.init(CommandsFactory factory)
           
 

Uses of CommandsFactory in org.infinispan.remoting
 

Methods in org.infinispan.remoting with parameters of type CommandsFactory
 void ReplicationQueueImpl.injectDependencies(ScheduledExecutorService executor, RpcManager rpcManager, Configuration configuration, CommandsFactory commandsFactory, Cache cache)
           
 void ReplicationQueueImpl.injectDependencies(ScheduledExecutorService executor, RpcManager rpcManager, Configuration configuration, CommandsFactory commandsFactory, String cacheName)
           
 

Uses of CommandsFactory in org.infinispan.remoting.rpc
 

Methods in org.infinispan.remoting.rpc with parameters of type CommandsFactory
 void RpcManagerImpl.injectDependencies(Transport t, Cache cache, Configuration cfg, ReplicationQueue replicationQueue, CommandsFactory cf, ExecutorService e, LocalTopologyManager localTopologyManager, StateTransferManager stateTransferManager, GlobalConfiguration globalCfg)
           
 

Uses of CommandsFactory in org.infinispan.statetransfer
 

Methods in org.infinispan.statetransfer with parameters of type CommandsFactory
 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 StateTransferInterceptor.init(StateTransferLock stateTransferLock, Configuration configuration, CommandsFactory commandFactory, StateTransferManager stateTransferManager)
           
 

Constructors in org.infinispan.statetransfer with parameters of type CommandsFactory
InboundTransferTask(Set<Integer> segments, Address source, int topologyId, StateConsumerImpl stateConsumer, RpcManager rpcManager, CommandsFactory commandsFactory, long timeout, String cacheName)
           
OutboundTransferTask(Address destination, Set<Integer> segments, int stateTransferChunkSize, int topologyId, ConsistentHash readCh, StateProviderImpl stateProvider, DataContainer dataContainer, CacheLoaderManager cacheLoaderManager, RpcManager rpcManager, CommandsFactory commandsFactory, long timeout, String cacheName)
           
 

Uses of CommandsFactory in org.infinispan.transaction
 

Fields in org.infinispan.transaction declared as CommandsFactory
protected  CommandsFactory TransactionTable.commandsFactory
           
 

Methods in org.infinispan.transaction with parameters of type CommandsFactory
 void TransactionCoordinator.init(CommandsFactory commandsFactory, InvocationContextContainer icc, InterceptorChain invoker, TransactionTable txTable, Configuration configuration)
           
 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)
           
 

Constructors in org.infinispan.transaction with parameters of type CommandsFactory
AbstractEnlistmentAdapter(CacheTransaction cacheTransaction, CommandsFactory commandsFactory, RpcManager rpcManager, TransactionTable txTable, ClusteringDependentLogic clusteringLogic, Configuration configuration)
           
AbstractEnlistmentAdapter(CommandsFactory commandsFactory, RpcManager rpcManager, TransactionTable txTable, ClusteringDependentLogic clusteringLogic, Configuration configuration)
           
 

Uses of CommandsFactory in org.infinispan.transaction.synchronization
 

Constructors in org.infinispan.transaction.synchronization with parameters of type CommandsFactory
SynchronizationAdapter(LocalTransaction localTransaction, TransactionCoordinator txCoordinator, CommandsFactory commandsFactory, RpcManager rpcManager, TransactionTable transactionTable, ClusteringDependentLogic clusteringLogic, Configuration configuration)
           
 

Uses of CommandsFactory in org.infinispan.transaction.xa
 

Constructors in org.infinispan.transaction.xa with parameters of type CommandsFactory
TransactionXaAdapter(LocalXaTransaction localTransaction, TransactionTable txTable, RecoveryManager rm, TransactionCoordinator txCoordinator, CommandsFactory commandsFactory, RpcManager rpcManager, ClusteringDependentLogic clusteringDependentLogic, Configuration configuration, String cacheName)
           
TransactionXaAdapter(TransactionTable txTable, RecoveryManager rm, TransactionCoordinator txCoordinator, CommandsFactory commandsFactory, RpcManager rpcManager, ClusteringDependentLogic clusteringDependentLogic, Configuration configuration, String cacheName)
           
 

Uses of CommandsFactory in org.infinispan.transaction.xa.recovery
 

Methods in org.infinispan.transaction.xa.recovery with parameters of type CommandsFactory
 void RecoveryManagerImpl.init(RpcManager rpcManager, CommandsFactory commandsFactory, TransactionTable txTable, TransactionCoordinator txCoordinator, TransactionFactory txFactory)
           
 


Infinispan Distribution 5.2.6.Final-redhat-2

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