|
||||||||||
| PREV NEXT | FRAMES NO FRAMES | |||||||||
| Packages that use Address | |
|---|---|
| org.infinispan.affinity | |
| org.infinispan.cacheviews | |
| org.infinispan.commands | Commands that operate on the cache, either locally or remotely. |
| org.infinispan.commands.control | Commands that control and coordinate certain cache operations, such as rehashing, state transfer and locking. |
| org.infinispan.commands.read | Commands that read data from the cache. |
| org.infinispan.commands.remote | Meta-commands that wrap other commands for remote execution. |
| org.infinispan.commands.tx | Commands that represent transactional lifecycle transitions. |
| org.infinispan.commands.write | Commands that alter the state of the cache. |
| org.infinispan.context | Contexts contain information of a specific invocation on the cache, such as its origins, scope (transactional or non-transactional), as well as invocation-specific flags. |
| org.infinispan.context.impl | This package contains different context implementations, selected dynamically based on the type of invocation. |
| org.infinispan.demo | Classes, programs and applications that help demonstrate how Infinispan can be used. |
| org.infinispan.distexec | |
| org.infinispan.distexec.mapreduce | |
| org.infinispan.distribution | Classes relating to the distributed cache mode. |
| org.infinispan.distribution.ch | |
| org.infinispan.interceptors | Infinispan is designed around a set of interceptors around a data container. |
| org.infinispan.interceptors.locking | |
| org.infinispan.lucenedemo | |
| org.infinispan.manager | Cache manager package |
| org.infinispan.notifications.cachelistener | Cache-specific notifications and eventing. |
| org.infinispan.notifications.cachelistener.event | |
| org.infinispan.notifications.cachemanagerlistener | CacheManager-specific notifications and eventing. |
| org.infinispan.notifications.cachemanagerlistener.event | |
| org.infinispan.query.clustered | |
| org.infinispan.remoting | Remote communication between cache instances. |
| org.infinispan.remoting.responses | Abstractions of the different response types allowed during RPC. |
| org.infinispan.remoting.rpc | Remote Procedure Call (RPC) interfaces and components used to invoke remote methods on cache instances. |
| org.infinispan.remoting.transport | Transports handle the low-level networking, used by the remoting components. |
| org.infinispan.remoting.transport.jgroups | A transport implementation based on JGroups. |
| org.infinispan.statetransfer | Transfer of state to new caches in a cluster. |
| org.infinispan.transaction | JTA transaction support. |
| org.infinispan.transaction.xa | XA transaction support. |
| org.infinispan.transaction.xa.recovery | |
| org.infinispan.util | General utilities that are not specific to Infinispan, including string parsing helpers, reflection tools and collections and containers designed to supplement the JDK-provided containers. |
| org.infinispan.util.logging | Infinispan's logging abstractions that delegate to either JDK or Log4J logging engines. |
| Uses of Address in org.infinispan.affinity |
|---|
| Methods in org.infinispan.affinity that return types with arguments of type Address | |
|---|---|
Map<Address,BlockingQueue<K>> |
KeyAffinityServiceImpl.getAddress2KeysMapping()
|
| Methods in org.infinispan.affinity with parameters of type Address | |
|---|---|
K |
KeyAffinityServiceImpl.getKeyForAddress(Address address)
|
K |
KeyAffinityService.getKeyForAddress(Address address)
Returns a key that will be distributed on the cluster node identified by address. |
| Method parameters in org.infinispan.affinity with type arguments of type Address | ||
|---|---|---|
static
|
KeyAffinityServiceFactory.newKeyAffinityService(Cache<K,V> cache,
Collection<Address> filter,
KeyGenerator<K> keyGenerator,
Executor ex,
int keyBufferSize)
Same as KeyAffinityServiceFactory.newKeyAffinityService(org.infinispan.Cache, java.util.Collection, KeyGenerator,
java.util.concurrent.Executor, int, boolean) with start == true. |
|
static
|
KeyAffinityServiceFactory.newKeyAffinityService(Cache<K,V> cache,
Collection<Address> filter,
KeyGenerator<K> keyGenerator,
Executor ex,
int keyBufferSize,
boolean start)
Creates a service that would only generate keys for addresses specified in filter. |
|
| Constructor parameters in org.infinispan.affinity with type arguments of type Address | |
|---|---|
KeyAffinityServiceImpl(Executor executor,
Cache<? extends K,?> cache,
KeyGenerator<? extends K> keyGenerator,
int bufferSize,
Collection<Address> filter,
boolean start)
|
|
| Uses of Address in org.infinispan.cacheviews |
|---|
| Methods in org.infinispan.cacheviews that return types with arguments of type Address | |
|---|---|
List<Address> |
CacheViewInfo.computeLeavers(List<Address> newMembers)
|
Set<Address> |
PendingCacheViewChanges.computeMissingJoiners(Collection<Address> newMembers)
|
Set<Address> |
PendingCacheViewChanges.getLeavers()
|
Set<Address> |
CacheViewsManagerImpl.getLeavers(String cacheName)
|
Set<Address> |
CacheViewsManager.getLeavers(String cacheName)
|
List<Address> |
CacheView.getMembers()
|
Set<Address> |
PendingCacheViewChanges.requestLeave(Collection<Address> leavers)
Signal a leave. |
| Methods in org.infinispan.cacheviews with parameters of type Address | |
|---|---|
boolean |
CacheView.contains(Address node)
|
void |
CacheViewsManagerImpl.handleRequestJoin(Address sender,
String cacheName)
Handle a join request. |
void |
CacheViewsManager.handleRequestJoin(Address sender,
String cacheName)
|
void |
CacheViewsManagerImpl.handleRequestLeave(Address sender,
String cacheName)
|
void |
CacheViewsManager.handleRequestLeave(Address sender,
String cacheName)
|
void |
PendingCacheViewChanges.requestJoin(Address joiner)
Signal a join |
| Method parameters in org.infinispan.cacheviews with type arguments of type Address | |
|---|---|
List<Address> |
CacheViewInfo.computeLeavers(List<Address> newMembers)
|
Set<Address> |
PendingCacheViewChanges.computeMissingJoiners(Collection<Address> newMembers)
|
boolean |
CacheView.containsAny(Collection<Address> nodes)
|
void |
PendingCacheViewChanges.recoveredViews(Collection<Address> newMembers,
Collection<Address> recoveredJoiners)
Signal a merge |
void |
PendingCacheViewChanges.recoveredViews(Collection<Address> newMembers,
Collection<Address> recoveredJoiners)
Signal a merge |
Set<Address> |
PendingCacheViewChanges.requestLeave(Collection<Address> leavers)
Signal a leave. |
| Constructor parameters in org.infinispan.cacheviews with type arguments of type Address | |
|---|---|
CacheView(int viewId,
List<Address> members)
|
|
| Uses of Address in org.infinispan.commands |
|---|
| Uses of Address in org.infinispan.commands.control |
|---|
| Methods in org.infinispan.commands.control that return Address | |
|---|---|
Address |
CacheViewControlCommand.getOrigin()
|
| Methods in org.infinispan.commands.control with parameters of type Address | |
|---|---|
void |
CacheViewControlCommand.setOrigin(Address origin)
|
| Constructors in org.infinispan.commands.control with parameters of type Address | |
|---|---|
CacheViewControlCommand(String cacheName,
CacheViewControlCommand.Type type,
Address sender)
|
|
CacheViewControlCommand(String cacheName,
CacheViewControlCommand.Type type,
Address sender,
int viewId)
|
|
CacheViewControlCommand(String cacheName,
CacheViewControlCommand.Type type,
Address sender,
int newViewId,
List<Address> newMembers,
int oldViewId,
List<Address> oldMembers)
|
|
StateTransferControlCommand(String cacheName,
StateTransferControlCommand.Type type,
Address sender,
int viewId)
|
|
StateTransferControlCommand(String cacheName,
StateTransferControlCommand.Type type,
Address sender,
int viewId,
Collection<InternalCacheEntry> state,
Collection<LockInfo> lockInfo)
|
|
| Constructor parameters in org.infinispan.commands.control with type arguments of type Address | |
|---|---|
CacheViewControlCommand(String cacheName,
CacheViewControlCommand.Type type,
Address sender,
int newViewId,
List<Address> newMembers,
int oldViewId,
List<Address> oldMembers)
|
|
CacheViewControlCommand(String cacheName,
CacheViewControlCommand.Type type,
Address sender,
int newViewId,
List<Address> newMembers,
int oldViewId,
List<Address> oldMembers)
|
|
| Uses of Address in org.infinispan.commands.read |
|---|
| Fields in org.infinispan.commands.read declared as Address | |
|---|---|
protected Address |
MapReduceCommand.localAddress
|
| Methods in org.infinispan.commands.read with parameters of type Address | |
|---|---|
void |
MapReduceCommand.init(CommandsFactory factory,
InterceptorChain invoker,
InvocationContextContainer icc,
DistributionManager dm,
Address localAddress)
|
| Uses of Address in org.infinispan.commands.remote |
|---|
| Methods in org.infinispan.commands.remote that return Address | |
|---|---|
Address |
CacheRpcCommand.getOrigin()
Get the origin of the command |
Address |
BaseRpcCommand.getOrigin()
|
| Methods in org.infinispan.commands.remote with parameters of type Address | |
|---|---|
void |
CacheRpcCommand.setOrigin(Address origin)
Set the origin of the command |
void |
BaseRpcCommand.setOrigin(Address origin)
|
| Uses of Address in org.infinispan.commands.tx |
|---|
| Methods in org.infinispan.commands.tx that return Address | |
|---|---|
Address |
AbstractTransactionBoundaryCommand.getOrigin()
|
| Methods in org.infinispan.commands.tx with parameters of type Address | |
|---|---|
void |
AbstractTransactionBoundaryCommand.setOrigin(Address origin)
|
| Uses of Address in org.infinispan.commands.write |
|---|
| Methods in org.infinispan.commands.write with parameters of type Address | |
|---|---|
boolean |
InvalidateL1Command.isCausedByALocalWrite(Address address)
Returns true if the write that caused the invalidation was performed on this node. |
| Constructors in org.infinispan.commands.write with parameters of type Address | |
|---|---|
InvalidateL1Command(Address writeOrigin,
boolean forRehash,
DataContainer dc,
Configuration config,
DistributionManager dm,
CacheNotifier notifier,
Collection<Object> keys)
|
|
| Uses of Address in org.infinispan.context |
|---|
| Methods in org.infinispan.context that return Address | |
|---|---|
Address |
InvocationContextFlagsOverride.getOrigin()
|
Address |
InvocationContext.getOrigin()
Get the origin of the command, or null if the command originated locally |
| Methods in org.infinispan.context with parameters of type Address | |
|---|---|
NonTxInvocationContext |
TransactionalInvocationContextContainer.createRemoteInvocationContext(Address origin)
|
NonTxInvocationContext |
NonTransactionalInvocationContextContainer.createRemoteInvocationContext(Address origin)
|
InvocationContext |
InvocationContextContainer.createRemoteInvocationContext(Address origin)
Returns an NonTxInvocationContext whose NonTxInvocationContext.isOriginLocal() flag will be true. |
InvocationContext |
InvocationContextContainer.createRemoteInvocationContextForCommand(VisitableCommand cacheCommand,
Address origin)
As InvocationContextContainer.createRemoteInvocationContext(org.infinispan.remoting.transport.Address), but returning the flags to
the context from the Command if any Flag was set. |
InvocationContext |
AbstractInvocationContextContainer.createRemoteInvocationContextForCommand(VisitableCommand cacheCommand,
Address origin)
|
RemoteTxInvocationContext |
TransactionalInvocationContextContainer.createRemoteTxInvocationContext(RemoteTransaction tx,
Address origin)
|
RemoteTxInvocationContext |
NonTransactionalInvocationContextContainer.createRemoteTxInvocationContext(RemoteTransaction tx,
Address origin)
|
RemoteTxInvocationContext |
InvocationContextContainer.createRemoteTxInvocationContext(RemoteTransaction tx,
Address origin)
Returns an RemoteTxInvocationContext. |
| Uses of Address in org.infinispan.context.impl |
|---|
| Methods in org.infinispan.context.impl that return Address | |
|---|---|
Address |
ImmutableContext.getOrigin()
|
Address |
AbstractInvocationContext.getOrigin()
|
| Methods in org.infinispan.context.impl that return types with arguments of type Address | |
|---|---|
Collection<Address> |
LocalTxInvocationContext.getRemoteLocksAcquired()
|
| Methods in org.infinispan.context.impl with parameters of type Address | |
|---|---|
void |
AbstractInvocationContext.setOrigin(Address origin)
|
| Method parameters in org.infinispan.context.impl with type arguments of type Address | |
|---|---|
void |
LocalTxInvocationContext.remoteLocksAcquired(Collection<Address> nodes)
|
| Uses of Address in org.infinispan.demo |
|---|
| Method parameters in org.infinispan.demo with type arguments of type Address | |
|---|---|
void |
InfinispanDemo.ClusterTableModel.setMembers(List<Address> m)
|
| Uses of Address in org.infinispan.distexec |
|---|
| Methods in org.infinispan.distexec that return Address | |
|---|---|
protected Address |
DefaultExecutorService.selectExecutionNode()
|
protected Address |
DefaultExecutorService.selectExecutionNode(List<Address> candidates)
|
| Methods in org.infinispan.distexec that return types with arguments of type Address | ||
|---|---|---|
protected
|
DefaultExecutorService.mapKeysToNodes(K... input)
|
|
protected List<Address> |
DefaultExecutorService.randomClusterMembers(List<Address> members,
int numNeeded)
|
|
| Methods in org.infinispan.distexec with parameters of type Address | ||
|---|---|---|
protected
|
DefaultExecutorService.executeFuture(Address address,
DefaultExecutorService.DistributedRunnableFuture<T> f)
|
|
| Method parameters in org.infinispan.distexec with type arguments of type Address | |
|---|---|
protected List<Address> |
DefaultExecutorService.randomClusterMembers(List<Address> members,
int numNeeded)
|
protected Address |
DefaultExecutorService.selectExecutionNode(List<Address> candidates)
|
| Uses of Address in org.infinispan.distexec.mapreduce |
|---|
| Methods in org.infinispan.distexec.mapreduce that return types with arguments of type Address | |
|---|---|
protected Map<Address,List<KIn>> |
MapReduceTask.mapKeysToNodes()
|
| Uses of Address in org.infinispan.distribution |
|---|
| Methods in org.infinispan.distribution that return Address | |
|---|---|
Address |
DistributionManagerImpl.getPrimaryLocation(Object key)
|
Address |
DistributionManager.getPrimaryLocation(Object key)
Returns the first Address containing the key. |
| Methods in org.infinispan.distribution that return types with arguments of type Address | |
|---|---|
Collection<Address> |
DistributionManagerImpl.getAffectedNodes(Collection<Object> affectedKeys)
|
Collection<Address> |
DistributionManager.getAffectedNodes(Collection<Object> affectedKeys)
A helper method that retrieves a list of nodes affected by operations on a set of keys. |
List<Address> |
DistributionManagerImpl.locate(Object key)
|
List<Address> |
DistributionManager.locate(Object key)
Locates a key in a cluster. |
Map<Object,List<Address>> |
DistributionManagerImpl.locateAll(Collection<Object> keys)
|
Map<Object,List<Address>> |
DistributionManager.locateAll(Collection<Object> keys)
Locates a list of keys in a cluster. |
Map<Object,List<Address>> |
DistributionManagerImpl.locateAll(Collection<Object> keys,
int numOwners)
|
Map<Object,List<Address>> |
DistributionManager.locateAll(Collection<Object> keys,
int numOwners)
Same as DistributionManager.locateAll(java.util.Collection), but the list of addresses only contains numOwners owners. |
| Methods in org.infinispan.distribution with parameters of type Address | |
|---|---|
void |
L1ManagerImpl.addRequestor(Object key,
Address origin)
|
void |
L1Manager.addRequestor(Object key,
Address requestor)
Records a request that will be cached in another nodes L1 |
NotifyingNotifiableFuture<Object> |
L1ManagerImpl.flushCache(Collection<Object> keys,
Object retval,
Address origin,
boolean assumeOriginKeptEntryInL1)
|
NotifyingNotifiableFuture<Object> |
L1Manager.flushCache(Collection<Object> keys,
Object retval,
Address origin,
boolean assumeOriginKeptEntryInL1)
Flushes a cache (using unicast or multicast) for a set of keys |
Future<Object> |
L1ManagerImpl.flushCacheWithSimpleFuture(Collection<Object> keys,
Object retval,
Address origin,
boolean assumeOriginKeptEntryInL1)
|
Future<Object> |
L1Manager.flushCacheWithSimpleFuture(Collection<Object> keys,
Object retval,
Address origin,
boolean assumeOriginKeptEntryInL1)
|
| Uses of Address in org.infinispan.distribution.ch |
|---|
| Classes in org.infinispan.distribution.ch that implement Address | |
|---|---|
class |
VirtualAddress
Virtual addresses are used internally by the consistent hashes in order to provide virtual nodes. |
| Fields in org.infinispan.distribution.ch declared as Address | |
|---|---|
Address |
ExperimentalDefaultConsistentHash.Entry.address
|
protected Address[] |
AbstractWheelConsistentHash.positionValues
|
| Fields in org.infinispan.distribution.ch with type parameters of type Address | |
|---|---|
protected Set<Address> |
AbstractWheelConsistentHash.caches
|
| Methods in org.infinispan.distribution.ch that return Address | |
|---|---|
Address |
VirtualAddress.getRealAddress()
|
Address |
ConsistentHash.primaryLocation(Object key)
Should be equivalent to return the first element of ConsistentHash.locate(Object, int). |
Address |
AbstractWheelConsistentHash.primaryLocation(Object key)
|
Address |
AbstractConsistentHash.primaryLocation(Object key)
|
| Methods in org.infinispan.distribution.ch that return types with arguments of type Address | |
|---|---|
List<Address> |
ConsistentHash.getBackupsForNode(Address node,
int replCount)
Deprecated. No longer supported. This method doesn't make sense with virtual nodes enabled. |
List<Address> |
AbstractConsistentHash.getBackupsForNode(Address node,
int replCount)
|
Set<Address> |
UnionConsistentHash.getCaches()
|
Set<Address> |
ExperimentalDefaultConsistentHash.getCaches()
|
Set<Address> |
ConsistentHash.getCaches()
Should return a collection of cache addresses in the cluster. |
Set<Address> |
AbstractWheelConsistentHash.getCaches()
|
protected Iterator<Address> |
AbstractWheelConsistentHash.getPositionsIterator(int normalizedHash)
Creates an iterator over the positions "map" starting at the index specified by the normalizedHash. |
List<Address> |
ConsistentHash.getStateProvidersOnJoin(Address joiner,
int replCount)
Deprecated. No longer supported. This method doesn't make sense with virtual nodes enabled. |
List<Address> |
AbstractConsistentHash.getStateProvidersOnJoin(Address joiner,
int replCount)
|
List<Address> |
ConsistentHash.getStateProvidersOnLeave(Address leaver,
int replCount)
Deprecated. No longer supported. This method doesn't make sense with virtual nodes enabled. |
List<Address> |
AbstractConsistentHash.getStateProvidersOnLeave(Address leaver,
int replCount)
|
List<Address> |
UnionConsistentHash.locate(Object key,
int replCount)
|
List<Address> |
TopologyAwareConsistentHash.locate(Object key,
int replCount)
|
List<Address> |
ExperimentalDefaultConsistentHash.locate(Object key,
int replCount)
|
List<Address> |
DefaultConsistentHash.locate(Object key,
int replCount)
|
List<Address> |
ConsistentHash.locate(Object key,
int replCount)
Locates a key, given a replication count (number of copies). |
Map<Object,List<Address>> |
ConsistentHash.locateAll(Collection<Object> keys,
int replCount)
The logical equivalent of calling ConsistentHash.locate(Object, int) multiple times for each key in the collection of
keys. |
Map<Object,List<Address>> |
AbstractConsistentHash.locateAll(Collection<Object> keys,
int replCount)
|
| Methods in org.infinispan.distribution.ch with parameters of type Address | |
|---|---|
static ConsistentHash |
ConsistentHashHelper.createConsistentHash(Configuration c,
Collection<Address> addresses,
Address... moreAddresses)
Creates a new consistent hash instance based on the user's configuration, and populates the consistent hash with the collection of addresses passed in. |
static ConsistentHash |
ConsistentHashHelper.createConsistentHash(ConsistentHash template,
Collection<Address> addresses,
Address... moreAddresses)
Creates a new consistent hash instance based on the type specified, and populates the consistent hash with the collection of addresses passed in. |
List<Address> |
ConsistentHash.getBackupsForNode(Address node,
int replCount)
Deprecated. No longer supported. This method doesn't make sense with virtual nodes enabled. |
List<Address> |
AbstractConsistentHash.getBackupsForNode(Address node,
int replCount)
|
int |
ExperimentalDefaultConsistentHash.getDistance(Address a1,
Address a2)
The distance between the first entries in the address array for two caches, a1 and a2. |
List<Integer> |
UnionConsistentHash.getHashIds(Address a)
|
List<Integer> |
ExperimentalDefaultConsistentHash.getHashIds(Address a)
|
List<Integer> |
ConsistentHash.getHashIds(Address a)
Returns a list of values between 0 and the hash space limit, or hash id, for a particular address. |
List<Integer> |
AbstractWheelConsistentHash.getHashIds(Address a)
|
List<Address> |
ConsistentHash.getStateProvidersOnJoin(Address joiner,
int replCount)
Deprecated. No longer supported. This method doesn't make sense with virtual nodes enabled. |
List<Address> |
AbstractConsistentHash.getStateProvidersOnJoin(Address joiner,
int replCount)
|
List<Address> |
ConsistentHash.getStateProvidersOnLeave(Address leaver,
int replCount)
Deprecated. No longer supported. This method doesn't make sense with virtual nodes enabled. |
List<Address> |
AbstractConsistentHash.getStateProvidersOnLeave(Address leaver,
int replCount)
|
boolean |
ExperimentalDefaultConsistentHash.isAdjacent(Address a1,
Address a2)
Two hashes are adjacent if they are next to each other in the consistent hash. |
boolean |
TopologyAwareConsistentHash.isKeyLocalToAddress(Address target,
Object key,
int replCount)
|
boolean |
DefaultConsistentHash.isKeyLocalToAddress(Address target,
Object key,
int replCount)
|
boolean |
ConsistentHash.isKeyLocalToAddress(Address a,
Object key,
int replCount)
Test to see whether a key is mapped to a given address. |
boolean |
AbstractConsistentHash.isKeyLocalToAddress(Address a,
Object key,
int replCount)
|
static ConsistentHash |
ConsistentHashHelper.removeAddress(ConsistentHash ch,
Address toRemove,
Configuration c)
Returns a new consistent hash of the same type with the given address removed. |
static UnionConsistentHash |
ConsistentHashHelper.removeAddressFromUnionConsistentHash(UnionConsistentHash uch,
Address toRemove,
Configuration c)
Creates a new UnionConsistentHash instance based on the old instance, removing the provided address from both target consistent hash instances in the union. |
| Method parameters in org.infinispan.distribution.ch with type arguments of type Address | |
|---|---|
static ConsistentHash |
ConsistentHashHelper.createConsistentHash(Configuration c,
Collection<Address> addresses)
Creates a new consistent hash instance based on the user's configuration, and populates the consistent hash with the collection of addresses passed in. |
static ConsistentHash |
ConsistentHashHelper.createConsistentHash(Configuration c,
Collection<Address> addresses,
Address... moreAddresses)
Creates a new consistent hash instance based on the user's configuration, and populates the consistent hash with the collection of addresses passed in. |
static ConsistentHash |
ConsistentHashHelper.createConsistentHash(Configuration c,
Collection<Address> addresses,
Collection<Address> moreAddresses)
Creates a new consistent hash instance based on the user's configuration, and populates the consistent hash with the collection of addresses passed in. |
static ConsistentHash |
ConsistentHashHelper.createConsistentHash(Configuration c,
Collection<Address> addresses,
Collection<Address> moreAddresses)
Creates a new consistent hash instance based on the user's configuration, and populates the consistent hash with the collection of addresses passed in. |
static ConsistentHash |
ConsistentHashHelper.createConsistentHash(ConsistentHash template,
Collection<Address> addresses)
Creates a new consistent hash instance based on the type specified, and populates the consistent hash with the collection of addresses passed in. |
static ConsistentHash |
ConsistentHashHelper.createConsistentHash(ConsistentHash template,
Collection<Address> addresses,
Address... moreAddresses)
Creates a new consistent hash instance based on the type specified, and populates the consistent hash with the collection of addresses passed in. |
void |
ExperimentalDefaultConsistentHash.setCaches(Collection<Address> caches)
|
void |
UnionConsistentHash.setCaches(Set<Address> caches)
|
void |
TopologyAwareConsistentHash.setCaches(Set<Address> newCaches)
|
void |
ExperimentalDefaultConsistentHash.setCaches(Set<Address> caches)
|
void |
ConsistentHash.setCaches(Set<Address> caches)
Sets the collection of cache addresses in the cluster. |
void |
AbstractWheelConsistentHash.setCaches(Set<Address> newCaches)
|
| Constructors in org.infinispan.distribution.ch with parameters of type Address | |
|---|---|
ExperimentalDefaultConsistentHash.Entry(Address address,
String string,
int differentiator,
int hash)
|
|
VirtualAddress(Address realAddress,
int id)
|
|
| Uses of Address in org.infinispan.interceptors |
|---|
| Method parameters in org.infinispan.interceptors with type arguments of type Address | |
|---|---|
protected void |
VersionedDistributionInterceptor.prepareOnAffectedNodes(TxInvocationContext ctx,
PrepareCommand command,
Collection<Address> recipients,
boolean ignored)
|
protected void |
DistributionInterceptor.prepareOnAffectedNodes(TxInvocationContext ctx,
PrepareCommand command,
Collection<Address> recipients,
boolean sync)
|
| Uses of Address in org.infinispan.interceptors.locking |
|---|
| Methods in org.infinispan.interceptors.locking that return Address | |
|---|---|
Address |
ClusteringDependentLogic.getAddress()
|
Address |
ClusteringDependentLogic.AllNodesLogic.getAddress()
|
Address |
ClusteringDependentLogic.DistributionLogic.getAddress()
|
| Methods in org.infinispan.interceptors.locking that return types with arguments of type Address | |
|---|---|
Collection<Address> |
ClusteringDependentLogic.getOwners(Collection<Object> keys)
|
Collection<Address> |
ClusteringDependentLogic.AllNodesLogic.getOwners(Collection<Object> keys)
|
Collection<Address> |
ClusteringDependentLogic.DistributionLogic.getOwners(Collection<Object> keys)
|
| Uses of Address in org.infinispan.lucenedemo |
|---|
| Methods in org.infinispan.lucenedemo that return types with arguments of type Address | |
|---|---|
List<Address> |
DemoActions.listAllMembers()
Returns a list of Addresses of all members in the cluster |
| Uses of Address in org.infinispan.manager |
|---|
| Methods in org.infinispan.manager that return Address | |
|---|---|
Address |
EmbeddedCacheManager.getAddress()
|
Address |
DefaultCacheManager.getAddress()
|
Address |
AbstractDelegatingEmbeddedCacheManager.getAddress()
|
Address |
EmbeddedCacheManager.getCoordinator()
|
Address |
DefaultCacheManager.getCoordinator()
|
Address |
AbstractDelegatingEmbeddedCacheManager.getCoordinator()
|
| Methods in org.infinispan.manager that return types with arguments of type Address | |
|---|---|
List<Address> |
EmbeddedCacheManager.getMembers()
|
List<Address> |
DefaultCacheManager.getMembers()
|
List<Address> |
AbstractDelegatingEmbeddedCacheManager.getMembers()
|
| Uses of Address in org.infinispan.notifications.cachelistener |
|---|
| Method parameters in org.infinispan.notifications.cachelistener with type arguments of type Address | |
|---|---|
void |
CacheNotifierImpl.notifyDataRehashed(Collection<Address> oldView,
Collection<Address> newView,
long newViewId,
boolean pre)
|
void |
CacheNotifierImpl.notifyDataRehashed(Collection<Address> oldView,
Collection<Address> newView,
long newViewId,
boolean pre)
|
void |
CacheNotifier.notifyDataRehashed(Collection<Address> oldView,
Collection<Address> newView,
long newViewId,
boolean pre)
|
void |
CacheNotifier.notifyDataRehashed(Collection<Address> oldView,
Collection<Address> newView,
long newViewId,
boolean pre)
|
| Uses of Address in org.infinispan.notifications.cachelistener.event |
|---|
| Methods in org.infinispan.notifications.cachelistener.event that return types with arguments of type Address | |
|---|---|
Collection<Address> |
EventImpl.getMembersAtEnd()
|
Collection<Address> |
DataRehashedEvent.getMembersAtEnd()
|
Collection<Address> |
EventImpl.getMembersAtStart()
|
Collection<Address> |
DataRehashedEvent.getMembersAtStart()
|
| Method parameters in org.infinispan.notifications.cachelistener.event with type arguments of type Address | |
|---|---|
void |
EventImpl.setMembersAtEnd(Collection<Address> membersAtEnd)
|
void |
EventImpl.setMembersAtStart(Collection<Address> membersAtStart)
|
| Uses of Address in org.infinispan.notifications.cachemanagerlistener |
|---|
| Methods in org.infinispan.notifications.cachemanagerlistener with parameters of type Address | |
|---|---|
void |
CacheManagerNotifierImpl.notifyMerge(List<Address> members,
List<Address> oldMembers,
Address myAddress,
int viewId,
List<List<Address>> subgroupsMerged)
|
void |
CacheManagerNotifier.notifyMerge(List<Address> members,
List<Address> oldMembers,
Address myAddress,
int viewId,
List<List<Address>> subgroupsMerged)
|
void |
CacheManagerNotifierImpl.notifyViewChange(List<Address> members,
List<Address> oldMembers,
Address myAddress,
int viewId)
|
void |
CacheManagerNotifier.notifyViewChange(List<Address> members,
List<Address> oldMembers,
Address myAddress,
int viewId)
Notifies all registered listeners of a viewChange event. |
| Method parameters in org.infinispan.notifications.cachemanagerlistener with type arguments of type Address | |
|---|---|
void |
CacheManagerNotifierImpl.notifyMerge(List<Address> members,
List<Address> oldMembers,
Address myAddress,
int viewId,
List<List<Address>> subgroupsMerged)
|
void |
CacheManagerNotifierImpl.notifyMerge(List<Address> members,
List<Address> oldMembers,
Address myAddress,
int viewId,
List<List<Address>> subgroupsMerged)
|
void |
CacheManagerNotifierImpl.notifyMerge(List<Address> members,
List<Address> oldMembers,
Address myAddress,
int viewId,
List<List<Address>> subgroupsMerged)
|
void |
CacheManagerNotifier.notifyMerge(List<Address> members,
List<Address> oldMembers,
Address myAddress,
int viewId,
List<List<Address>> subgroupsMerged)
|
void |
CacheManagerNotifier.notifyMerge(List<Address> members,
List<Address> oldMembers,
Address myAddress,
int viewId,
List<List<Address>> subgroupsMerged)
|
void |
CacheManagerNotifier.notifyMerge(List<Address> members,
List<Address> oldMembers,
Address myAddress,
int viewId,
List<List<Address>> subgroupsMerged)
|
void |
CacheManagerNotifierImpl.notifyViewChange(List<Address> members,
List<Address> oldMembers,
Address myAddress,
int viewId)
|
void |
CacheManagerNotifierImpl.notifyViewChange(List<Address> members,
List<Address> oldMembers,
Address myAddress,
int viewId)
|
void |
CacheManagerNotifier.notifyViewChange(List<Address> members,
List<Address> oldMembers,
Address myAddress,
int viewId)
Notifies all registered listeners of a viewChange event. |
void |
CacheManagerNotifier.notifyViewChange(List<Address> members,
List<Address> oldMembers,
Address myAddress,
int viewId)
Notifies all registered listeners of a viewChange event. |
| Uses of Address in org.infinispan.notifications.cachemanagerlistener.event |
|---|
| Methods in org.infinispan.notifications.cachemanagerlistener.event that return Address | |
|---|---|
Address |
ViewChangedEvent.getLocalAddress()
|
Address |
EventImpl.getLocalAddress()
|
| Methods in org.infinispan.notifications.cachemanagerlistener.event that return types with arguments of type Address | |
|---|---|
List<Address> |
ViewChangedEvent.getNewMembers()
|
List<Address> |
EventImpl.getNewMembers()
|
List<Address> |
ViewChangedEvent.getOldMembers()
|
List<Address> |
EventImpl.getOldMembers()
|
List<List<Address>> |
MergeEvent.getSubgroupsMerged()
|
List<List<Address>> |
EventImpl.getSubgroupsMerged()
|
| Methods in org.infinispan.notifications.cachemanagerlistener.event with parameters of type Address | |
|---|---|
void |
EventImpl.setLocalAddress(Address localAddress)
|
| Method parameters in org.infinispan.notifications.cachemanagerlistener.event with type arguments of type Address | |
|---|---|
void |
EventImpl.setNewMembers(List<Address> newMembers)
|
void |
EventImpl.setOldMembers(List<Address> oldMembers)
|
void |
EventImpl.setSubgroupsMerged(List<List<Address>> subgroupsMerged)
|
| Constructors in org.infinispan.notifications.cachemanagerlistener.event with parameters of type Address | |
|---|---|
EventImpl(String cacheName,
EmbeddedCacheManager cacheManager,
Event.Type type,
List<Address> newMemberList,
List<Address> oldMemberList,
Address localAddress,
int viewId)
|
|
| Constructor parameters in org.infinispan.notifications.cachemanagerlistener.event with type arguments of type Address | |
|---|---|
EventImpl(String cacheName,
EmbeddedCacheManager cacheManager,
Event.Type type,
List<Address> newMemberList,
List<Address> oldMemberList,
Address localAddress,
int viewId)
|
|
EventImpl(String cacheName,
EmbeddedCacheManager cacheManager,
Event.Type type,
List<Address> newMemberList,
List<Address> oldMemberList,
Address localAddress,
int viewId)
|
|
| Uses of Address in org.infinispan.query.clustered |
|---|
| Methods in org.infinispan.query.clustered that return Address | |
|---|---|
Address |
QueryResponse.getAddress()
|
Address |
ClusteredTopDocs.getNodeAddress()
|
| Methods in org.infinispan.query.clustered with parameters of type Address | |
|---|---|
Object |
ClusteredQueryInvoker.getValue(int doc,
Address address,
UUID queryId)
Retrieves the value (using doc index) in a remote query instance |
void |
QueryResponse.setAddress(Address address)
|
void |
ClusteredTopDocs.setNodeAddress(Address nodeAddress)
|
| Uses of Address in org.infinispan.remoting |
|---|
| Methods in org.infinispan.remoting that return types with arguments of type Address | |
|---|---|
static List<Address> |
MembershipArithmetic.getMembersJoined(List<Address> oldList,
List<Address> newList)
|
static Set<Address> |
MembershipArithmetic.getMembersJoined(Set<Address> oldSet,
Set<Address> newSet)
|
static List<Address> |
MembershipArithmetic.getMembersLeft(List<Address> oldList,
List<Address> newList)
|
static Set<Address> |
MembershipArithmetic.getMembersLeft(Set<Address> oldSet,
Set<Address> newSet)
|
| Methods in org.infinispan.remoting with parameters of type Address | |
|---|---|
Response |
InboundInvocationHandlerImpl.handle(CacheRpcCommand cmd,
Address origin)
|
Response |
InboundInvocationHandler.handle(CacheRpcCommand command,
Address origin)
Invokes a command on the cache, from a remote source. |
| Method parameters in org.infinispan.remoting with type arguments of type Address | |
|---|---|
static List<Address> |
MembershipArithmetic.getMembersJoined(List<Address> oldList,
List<Address> newList)
|
static List<Address> |
MembershipArithmetic.getMembersJoined(List<Address> oldList,
List<Address> newList)
|
static Set<Address> |
MembershipArithmetic.getMembersJoined(Set<Address> oldSet,
Set<Address> newSet)
|
static Set<Address> |
MembershipArithmetic.getMembersJoined(Set<Address> oldSet,
Set<Address> newSet)
|
static List<Address> |
MembershipArithmetic.getMembersLeft(List<Address> oldList,
List<Address> newList)
|
static List<Address> |
MembershipArithmetic.getMembersLeft(List<Address> oldList,
List<Address> newList)
|
static Set<Address> |
MembershipArithmetic.getMembersLeft(Set<Address> oldSet,
Set<Address> newSet)
|
static Set<Address> |
MembershipArithmetic.getMembersLeft(Set<Address> oldSet,
Set<Address> newSet)
|
| Uses of Address in org.infinispan.remoting.responses |
|---|
| Methods in org.infinispan.remoting.responses with parameters of type Address | |
|---|---|
boolean |
IgnoreExtraResponsesValidityFilter.isAcceptable(Response response,
Address address)
|
boolean |
ClusteredGetResponseValidityFilter.isAcceptable(Response response,
Address address)
|
| Constructors in org.infinispan.remoting.responses with parameters of type Address | |
|---|---|
ClusteredGetResponseValidityFilter(Collection<Address> targets,
Address self)
|
|
IgnoreExtraResponsesValidityFilter(Collection<Address> targets,
Address self)
|
|
| Constructor parameters in org.infinispan.remoting.responses with type arguments of type Address | |
|---|---|
ClusteredGetResponseValidityFilter(Collection<Address> targets,
Address self)
|
|
IgnoreExtraResponsesValidityFilter(Collection<Address> targets,
Address self)
|
|
| Uses of Address in org.infinispan.remoting.rpc |
|---|
| Methods in org.infinispan.remoting.rpc that return Address | |
|---|---|
Address |
RpcManagerImpl.getAddress()
|
Address |
RpcManager.getAddress()
Returns the address associated with this RpcManager or null if not part of the cluster. |
| Methods in org.infinispan.remoting.rpc that return types with arguments of type Address | |
|---|---|
Map<Address,Response> |
RpcManagerImpl.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpc,
boolean sync,
boolean usePriorityQueue)
|
Map<Address,Response> |
RpcManager.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpc,
boolean sync,
boolean usePriorityQueue)
Broadcasts an RPC command to a specified set of recipients |
Map<Address,Response> |
RpcManagerImpl.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpc,
boolean sync,
boolean usePriorityQueue,
long timeout)
|
Map<Address,Response> |
RpcManagerImpl.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpcCommand,
ResponseMode mode,
long timeout)
|
Map<Address,Response> |
RpcManager.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpcCommand,
ResponseMode mode,
long timeout)
Invokes an RPC call on other caches in the cluster. |
Map<Address,Response> |
RpcManagerImpl.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpcCommand,
ResponseMode mode,
long timeout,
boolean usePriorityQueue)
|
Map<Address,Response> |
RpcManager.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpcCommand,
ResponseMode mode,
long timeout,
boolean usePriorityQueue)
Invokes an RPC call on other caches in the cluster. |
Map<Address,Response> |
RpcManagerImpl.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpcCommand,
ResponseMode mode,
long timeout,
boolean usePriorityQueue,
ResponseFilter responseFilter)
|
Map<Address,Response> |
RpcManager.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpcCommand,
ResponseMode mode,
long timeout,
boolean usePriorityQueue,
ResponseFilter responseFilter)
Invokes an RPC call on other caches in the cluster. |
| Methods in org.infinispan.remoting.rpc with parameters of type Address | |
|---|---|
boolean |
ResponseFilter.isAcceptable(Response response,
Address sender)
Determines whether a response from a given sender should be added to the response list of the request |
| Method parameters in org.infinispan.remoting.rpc with type arguments of type Address | |
|---|---|
void |
RpcManagerImpl.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpc,
boolean sync)
|
void |
RpcManager.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpc,
boolean sync)
Broadcasts an RPC command to a specified set of recipients |
Map<Address,Response> |
RpcManagerImpl.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpc,
boolean sync,
boolean usePriorityQueue)
|
Map<Address,Response> |
RpcManager.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpc,
boolean sync,
boolean usePriorityQueue)
Broadcasts an RPC command to a specified set of recipients |
Map<Address,Response> |
RpcManagerImpl.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpc,
boolean sync,
boolean usePriorityQueue,
long timeout)
|
Map<Address,Response> |
RpcManagerImpl.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpcCommand,
ResponseMode mode,
long timeout)
|
Map<Address,Response> |
RpcManager.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpcCommand,
ResponseMode mode,
long timeout)
Invokes an RPC call on other caches in the cluster. |
Map<Address,Response> |
RpcManagerImpl.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpcCommand,
ResponseMode mode,
long timeout,
boolean usePriorityQueue)
|
Map<Address,Response> |
RpcManager.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpcCommand,
ResponseMode mode,
long timeout,
boolean usePriorityQueue)
Invokes an RPC call on other caches in the cluster. |
Map<Address,Response> |
RpcManagerImpl.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpcCommand,
ResponseMode mode,
long timeout,
boolean usePriorityQueue,
ResponseFilter responseFilter)
|
Map<Address,Response> |
RpcManager.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpcCommand,
ResponseMode mode,
long timeout,
boolean usePriorityQueue,
ResponseFilter responseFilter)
Invokes an RPC call on other caches in the cluster. |
void |
RpcManagerImpl.invokeRemotelyInFuture(Collection<Address> recipients,
ReplicableCommand rpc,
boolean usePriorityQueue,
NotifyingNotifiableFuture<Object> l)
|
void |
RpcManager.invokeRemotelyInFuture(Collection<Address> recipients,
ReplicableCommand rpc,
boolean usePriorityQueue,
NotifyingNotifiableFuture<Object> future)
The same as RpcManager.invokeRemotely(java.util.Collection, org.infinispan.commands.ReplicableCommand, boolean)
except that the task is passed to the transport executor and a Future is returned. |
void |
RpcManagerImpl.invokeRemotelyInFuture(Collection<Address> recipients,
ReplicableCommand rpc,
boolean usePriorityQueue,
NotifyingNotifiableFuture<Object> l,
long timeout)
|
void |
RpcManager.invokeRemotelyInFuture(Collection<Address> recipients,
ReplicableCommand rpc,
boolean usePriorityQueue,
NotifyingNotifiableFuture<Object> future,
long timeout)
The same as RpcManager.invokeRemotelyInFuture(java.util.Collection, org.infinispan.commands.ReplicableCommand,
boolean, org.infinispan.util.concurrent.NotifyingNotifiableFuture) except that you can specify a timeout. |
void |
RpcManagerImpl.invokeRemotelyInFuture(Collection<Address> recipients,
ReplicableCommand rpc,
boolean usePriorityQueue,
NotifyingNotifiableFuture<Object> l,
long timeout,
boolean ignoreLeavers)
|
void |
RpcManager.invokeRemotelyInFuture(Collection<Address> recipients,
ReplicableCommand rpc,
boolean usePriorityQueue,
NotifyingNotifiableFuture<Object> future,
long timeout,
boolean ignoreLeavers)
The same as RpcManager.invokeRemotelyInFuture(java.util.Collection, org.infinispan.commands.ReplicableCommand,
boolean, org.infinispan.util.concurrent.NotifyingNotifiableFuture, long) except that you can specify a response mode. |
void |
RpcManagerImpl.invokeRemotelyInFuture(Collection<Address> recipients,
ReplicableCommand rpc,
NotifyingNotifiableFuture<Object> l)
|
void |
RpcManager.invokeRemotelyInFuture(Collection<Address> recipients,
ReplicableCommand rpc,
NotifyingNotifiableFuture<Object> future)
The same as RpcManager.invokeRemotely(java.util.Collection, org.infinispan.commands.ReplicableCommand, boolean)
except that the task is passed to the transport executor and a Future is returned. |
| Uses of Address in org.infinispan.remoting.transport |
|---|
| Subinterfaces of Address in org.infinispan.remoting.transport | |
|---|---|
interface |
TopologyAwareAddress
Wraps a TopologyUUID JGroups address |
| Methods in org.infinispan.remoting.transport that return Address | |
|---|---|
Address |
Transport.getAddress()
Retrieves the current cache instance's network address |
Address |
Transport.getCoordinator()
|
| Methods in org.infinispan.remoting.transport that return types with arguments of type Address | |
|---|---|
List<Address> |
Transport.getMembers()
Returns a list of members in the current cluster view. |
List<Address> |
Transport.getPhysicalAddresses()
Retrieves the current cache instance's physical network addresses. |
Map<Address,Response> |
Transport.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpcCommand,
ResponseMode mode,
long timeout,
boolean usePriorityQueue,
ResponseFilter responseFilter)
Invokes an RPC call on other caches in the cluster. |
| Methods in org.infinispan.remoting.transport with parameters of type Address | |
|---|---|
boolean |
AbstractTransport.checkResponse(Object responseObject,
Address sender)
|
protected boolean |
AbstractTransport.parseResponseAndAddToResponseList(Object responseObject,
Throwable exception,
Map<Address,Response> responseListToAddTo,
boolean wasSuspected,
boolean wasReceived,
Address sender,
boolean usedResponseFilter,
boolean ignoreLeavers)
|
| Method parameters in org.infinispan.remoting.transport with type arguments of type Address | |
|---|---|
Map<Address,Response> |
Transport.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpcCommand,
ResponseMode mode,
long timeout,
boolean usePriorityQueue,
ResponseFilter responseFilter)
Invokes an RPC call on other caches in the cluster. |
protected boolean |
AbstractTransport.parseResponseAndAddToResponseList(Object responseObject,
Throwable exception,
Map<Address,Response> responseListToAddTo,
boolean wasSuspected,
boolean wasReceived,
Address sender,
boolean usedResponseFilter,
boolean ignoreLeavers)
|
| Uses of Address in org.infinispan.remoting.transport.jgroups |
|---|
| Classes in org.infinispan.remoting.transport.jgroups that implement Address | |
|---|---|
class |
JGroupsAddress
An encapsulation of a JGroups Address |
class |
JGroupsTopologyAwareAddress
An encapsulation of a JGroups Address |
| Fields in org.infinispan.remoting.transport.jgroups declared as Address | |
|---|---|
protected Address |
JGroupsTransport.address
|
protected Address |
JGroupsTransport.coordinator
|
protected Address |
JGroupsTransport.physicalAddress
|
| Fields in org.infinispan.remoting.transport.jgroups with type parameters of type Address | |
|---|---|
protected List<Address> |
JGroupsTransport.members
|
| Methods in org.infinispan.remoting.transport.jgroups that return Address | |
|---|---|
Address |
JGroupsTransport.getAddress()
|
Address |
JGroupsTransport.getCoordinator()
|
Address |
SuspectException.getSuspect()
|
| Methods in org.infinispan.remoting.transport.jgroups that return types with arguments of type Address | |
|---|---|
List<Address> |
JGroupsTransport.getMembers()
|
List<Address> |
JGroupsTransport.getPhysicalAddresses()
|
Map<Address,Response> |
JGroupsTransport.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpcCommand,
ResponseMode mode,
long timeout,
boolean usePriorityQueue,
ResponseFilter responseFilter)
|
| Methods in org.infinispan.remoting.transport.jgroups with parameters of type Address | |
|---|---|
protected static org.jgroups.Address |
JGroupsTransport.toJGroupsAddress(Address a)
|
| Method parameters in org.infinispan.remoting.transport.jgroups with type arguments of type Address | |
|---|---|
Map<Address,Response> |
JGroupsTransport.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpcCommand,
ResponseMode mode,
long timeout,
boolean usePriorityQueue,
ResponseFilter responseFilter)
|
| Constructors in org.infinispan.remoting.transport.jgroups with parameters of type Address | |
|---|---|
SuspectException(String msg,
Address suspect)
|
|
SuspectException(String msg,
Address suspect,
Throwable cause)
|
|
| Uses of Address in org.infinispan.statetransfer |
|---|
| Fields in org.infinispan.statetransfer declared as Address | |
|---|---|
protected Address |
BaseStateTransferTask.self
|
| Fields in org.infinispan.statetransfer with type parameters of type Address | |
|---|---|
protected Collection<Address> |
BaseStateTransferTask.members
|
| Methods in org.infinispan.statetransfer that return Address | |
|---|---|
protected Address |
BaseStateTransferManagerImpl.getAddress()
|
| Methods in org.infinispan.statetransfer with parameters of type Address | |
|---|---|
void |
StateTransferManager.applyLocks(Collection<LockInfo> locks,
Address sender,
int viewId)
|
void |
BaseStateTransferManagerImpl.applyLocks(Collection<LockInfo> lockInfo,
Address sender,
int viewId)
|
void |
StateTransferManager.applyState(Collection<InternalCacheEntry> state,
Address sender,
int viewId)
|
void |
BaseStateTransferManagerImpl.applyState(Collection<InternalCacheEntry> state,
Address sender,
int viewId)
|
| Method parameters in org.infinispan.statetransfer with type arguments of type Address | |
|---|---|
protected ConsistentHash |
ReplicatedStateTransferManagerImpl.createConsistentHash(List<Address> members)
|
protected ConsistentHash |
DummyInvalidationStateTransferManagerImpl.createConsistentHash(List<Address> members)
Deprecated. |
protected ConsistentHash |
DistributedStateTransferManagerImpl.createConsistentHash(List<Address> members)
|
protected abstract ConsistentHash |
BaseStateTransferManagerImpl.createConsistentHash(List<Address> members)
|
protected ReplicatedStateTransferTask |
ReplicatedStateTransferManagerImpl.createStateTransferTask(int viewId,
List<Address> members,
boolean initialView)
|
protected BaseStateTransferTask |
DummyInvalidationStateTransferManagerImpl.createStateTransferTask(int viewId,
List<Address> members,
boolean initialView)
Deprecated. |
protected BaseStateTransferTask |
DistributedStateTransferManagerImpl.createStateTransferTask(int viewId,
List<Address> members,
boolean initialView)
|
protected abstract BaseStateTransferTask |
BaseStateTransferManagerImpl.createStateTransferTask(int viewId,
List<Address> members,
boolean initialView)
|
protected void |
BaseStateTransferTask.pushPartialState(Collection<Address> targets,
Collection<InternalCacheEntry> state,
Collection<LockInfo> lockInfo)
|
void |
BaseStateTransferManagerImpl.pushStateToNode(NotifyingNotifiableFuture<Object> stateTransferFuture,
int viewId,
Collection<Address> targets,
Collection<InternalCacheEntry> state,
Collection<LockInfo> lockInfo)
|
boolean |
BaseStateTransferManagerImpl.startStateTransfer(int viewId,
Collection<Address> members,
boolean initialView)
|
| Constructor parameters in org.infinispan.statetransfer with type arguments of type Address | |
|---|---|
BaseStateTransferTask(BaseStateTransferManagerImpl stateTransferManager,
RpcManager rpcManager,
StateTransferLock stateTransferLock,
CacheNotifier cacheNotifier,
Configuration configuration,
DataContainer dataContainer,
Collection<Address> members,
int newViewId,
ConsistentHash chNew,
ConsistentHash chOld,
boolean initialView)
|
|
DistributedStateTransferTask(RpcManager rpcManager,
Configuration configuration,
DataContainer dataContainer,
DistributedStateTransferManagerImpl stateTransferManager,
DistributionManager dm,
StateTransferLock stateTransferLock,
CacheNotifier cacheNotifier,
int newViewId,
Collection<Address> members,
ConsistentHash chOld,
ConsistentHash chNew,
boolean initialView,
TransactionTable transactionTable)
|
|
ReplicatedStateTransferTask(RpcManager rpcManager,
Configuration configuration,
DataContainer dataContainer,
ReplicatedStateTransferManagerImpl stateTransferManager,
StateTransferLock stateTransferLock,
CacheNotifier cacheNotifier,
int newViewId,
Collection<Address> members,
ConsistentHash chOld,
ConsistentHash chNew,
boolean initialView)
|
|
| Uses of Address in org.infinispan.transaction |
|---|
| Methods in org.infinispan.transaction that return types with arguments of type Address | |
|---|---|
Collection<Address> |
LocalTransaction.getRemoteLocksAcquired()
|
| Method parameters in org.infinispan.transaction with type arguments of type Address | |
|---|---|
void |
LocalTransaction.locksAcquired(Collection<Address> nodes)
|
protected void |
TransactionTable.updateStateOnNodesLeaving(Collection<Address> leavers)
|
| Uses of Address in org.infinispan.transaction.xa |
|---|
| Fields in org.infinispan.transaction.xa declared as Address | |
|---|---|
protected Address |
GlobalTransaction.addr
|
| Methods in org.infinispan.transaction.xa that return Address | |
|---|---|
Address |
GlobalTransaction.getAddress()
|
| Methods in org.infinispan.transaction.xa with parameters of type Address | |
|---|---|
GlobalTransaction |
TransactionFactory.newGlobalTransaction(Address addr,
boolean remote)
|
abstract GlobalTransaction |
TransactionFactory.TxFactoryEnum.newGlobalTransaction(Address addr,
boolean remote,
ClusterIdGenerator clusterIdGenerator,
boolean clustered)
|
void |
GlobalTransaction.setAddress(Address address)
|
| Constructors in org.infinispan.transaction.xa with parameters of type Address | |
|---|---|
DldGlobalTransaction(Address addr,
boolean remote)
|
|
GlobalTransaction(Address addr,
boolean remote)
|
|
| Uses of Address in org.infinispan.transaction.xa.recovery |
|---|
| Methods in org.infinispan.transaction.xa.recovery that return types with arguments of type Address | |
|---|---|
Set<Address> |
RecoveryManager.InDoubtTxInfo.getOwners()
Returns the set of nodes where this transaction information is maintained. |
Set<Address> |
InDoubtTxInfoImpl.getOwners()
|
| Methods in org.infinispan.transaction.xa.recovery with parameters of type Address | |
|---|---|
void |
InDoubtTxInfoImpl.addOwner(Address owner)
|
String |
RecoveryManagerImpl.forceTransactionCompletionFromCluster(Xid xid,
Address where,
boolean commit)
|
String |
RecoveryManager.forceTransactionCompletionFromCluster(Xid xid,
Address where,
boolean commit)
This method invokes RecoveryManager.forceTransactionCompletion(javax.transaction.xa.Xid, boolean) on the specified node. |
| Method parameters in org.infinispan.transaction.xa.recovery with type arguments of type Address | |
|---|---|
void |
RecoveryAwareRemoteTransaction.computeOrphan(Collection<Address> leavers)
Check's if this transaction's originator is no longer part of the cluster (orphan transaction) and updates RecoveryAwareRemoteTransaction.isOrphan(). |
void |
RecoveryManagerImpl.removeRecoveryInformationFromCluster(Collection<Address> where,
long internalId,
boolean sync)
|
void |
RecoveryManager.removeRecoveryInformationFromCluster(Collection<Address> where,
long internalId,
boolean sync)
Same as #removeRecoveryInformationFromCluster(java.util.Collection but the transaction
is identified by its internal id, and not by its xid. |
void |
RecoveryManagerImpl.removeRecoveryInformationFromCluster(Collection<Address> lockOwners,
Xid xid,
boolean sync,
GlobalTransaction gtx)
|
void |
RecoveryManager.removeRecoveryInformationFromCluster(Collection<Address> where,
Xid xid,
boolean sync,
GlobalTransaction gtx)
Removes from the specified nodes (or all nodes if the value of 'where' is null) the recovery information associated with these Xids. |
protected void |
RecoveryAwareTransactionTable.updateStateOnNodesLeaving(Collection<Address> leavers)
First moves the prepared transactions originated on the leavers into the recovery cache and then cleans up the transactions that are not yet prepared. |
| Constructors in org.infinispan.transaction.xa.recovery with parameters of type Address | |
|---|---|
RecoveryAwareDldGlobalTransaction(Address addr,
boolean remote)
|
|
RecoveryAwareGlobalTransaction(Address addr,
boolean remote)
|
|
| Uses of Address in org.infinispan.util |
|---|
| Methods in org.infinispan.util with parameters of type Address | |
|---|---|
protected long |
ClusterIdGenerator.calculateRank(Address address,
List<Address> members,
long viewId)
|
| Method parameters in org.infinispan.util with type arguments of type Address | |
|---|---|
protected long |
ClusterIdGenerator.calculateRank(Address address,
List<Address> members,
long viewId)
|
| Uses of Address in org.infinispan.util.logging |
|---|
| Methods in org.infinispan.util.logging with parameters of type Address | |
|---|---|
void |
Log.completedLeaveRehash(Address self,
String duration,
List<Address> leavers)
|
void |
Log.joinEvent(Address joiner)
|
void |
Log.joinRehashAborted(Address self,
String duration)
|
void |
Log.joinRehashCompleted(Address self,
String duration)
|
void |
Log.leaveEvent(Address leaver)
|
void |
Log.localAndPhysicalAddress(Address address,
List<Address> physicalAddresses)
|
void |
Log.participatingInRehash(Address address,
List<Address> stateProviders,
List<Address> receiversOfLeaverState)
|
void |
Log.remoteExecutionFailed(Address address,
Throwable t)
|
void |
Log.remoteStateRejected(Address sender,
int viewId,
int installedViewId)
|
void |
Log.successfullyAppliedState(Address member)
|
void |
Log.tryingToFetchState(Address member)
|
void |
Log.unableToLockToInvalidate(Object key,
Address address)
|
void |
Log.unableToRetrieveState(Address member,
Exception e)
|
void |
Log.unableToUnlockRebalancedKeys(GlobalTransaction gtx,
List<Object> keys,
Address self,
Throwable t)
|
| Method parameters in org.infinispan.util.logging with type arguments of type Address | |
|---|---|
void |
Log.cannotSelectRandomMembers(int numNeeded,
List<Address> members)
|
void |
Log.completedLeaveRehash(Address self,
String duration,
List<Address> leavers)
|
void |
Log.expectedJustOneResponse(Map<Address,Response> lr)
|
void |
Log.keyDoesNotMapToLocalNode(Object key,
Collection<Address> nodes)
|
void |
Log.localAndPhysicalAddress(Address address,
List<Address> physicalAddresses)
|
void |
Log.participatingInRehash(Address address,
List<Address> stateProviders,
List<Address> receiversOfLeaverState)
|
void |
Log.participatingInRehash(Address address,
List<Address> stateProviders,
List<Address> receiversOfLeaverState)
|
void |
Log.stateTransferTimeoutWaitingForJoinConfirmations(int viewId,
Map<Address,Integer> joinConfirmations)
|
void |
Log.stateTransferTimeoutWaitingForPushConfirmations(int viewId,
Map<Address,Integer> pushConfirmations)
|
void |
Log.viewChangeDetected(List<Address> oldMembers,
List<Address> newMembers)
|
void |
Log.viewChangeDetected(List<Address> oldMembers,
List<Address> newMembers)
|
|
--> | |||||||||