|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Packages that use Address | |
---|---|
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.demo | Classes, programs and applications that help demonstrate how Infinispan can be used. |
org.infinispan.distribution | Classes relating to the distributed cache mode. |
org.infinispan.lucenedemo | |
org.infinispan.manager | Cache manager package |
org.infinispan.notifications.cachemanagerlistener | CacheManager -specific notifications and eventing. |
org.infinispan.notifications.cachemanagerlistener.event | |
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.transaction.xa | XA transaction support. |
Uses of Address in org.infinispan.commands |
---|
Uses of Address in org.infinispan.commands.control |
---|
Constructors in org.infinispan.commands.control with parameters of type Address | |
---|---|
RehashControlCommand(String cacheName,
RehashControlCommand.Type type,
Address sender,
List<WriteCommand> txLogCommands,
List<PrepareCommand> pendingPrepares,
CommandsFactory commandsFactory)
|
|
RehashControlCommand(String cacheName,
RehashControlCommand.Type type,
Address sender,
Map<Object,InternalCacheValue> state,
ConsistentHash consistentHash,
CommandsFactory commandsFactory)
|
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.distribution |
---|
Fields in org.infinispan.distribution declared as Address | |
---|---|
Address |
ExperimentalDefaultConsistentHash.Entry.address
|
Methods in org.infinispan.distribution that return types with arguments of type Address | |
---|---|
protected Collection<Address> |
RehashTask.coordinator()
|
List<Address> |
DistributionManagerImpl.getAffectedNodes(Set<Object> affectedKeys)
|
List<Address> |
DistributionManager.getAffectedNodes(Set<Object> affectedKeys)
A helper method that retrieves a list of nodes affected by operations on a set of keys. |
List<Address> |
UnionConsistentHash.getCaches()
|
List<Address> |
ConsistentHash.getCaches()
Should return a collection of cache addresses in the cluster. |
List<Address> |
DefaultConsistentHash.getCaches()
|
List<Address> |
ExperimentalDefaultConsistentHash.getCaches()
|
protected Collection<Address> |
RehashTask.getInvalidHolders(Object key,
ConsistentHash chOld,
ConsistentHash chNew)
|
protected Collection<Address> |
LeaveTask.getInvalidHolders(Object key,
ConsistentHash chOld,
ConsistentHash chNew)
|
List<Address> |
DistributionManagerImpl.locate(Object key)
|
List<Address> |
DistributionManager.locate(Object key)
Locates a key in a cluster. |
List<Address> |
UnionConsistentHash.locate(Object key,
int replCount)
|
List<Address> |
ConsistentHash.locate(Object key,
int replCount)
Locates a key, given a replication count (number of copies). |
List<Address> |
DefaultConsistentHash.locate(Object key,
int replCount)
|
List<Address> |
ExperimentalDefaultConsistentHash.locate(Object key,
int replCount)
|
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>> |
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)
|
List<Address> |
DistributionManagerImpl.requestPermissionToJoin(Address joiner)
|
List<Address> |
DistributionManager.requestPermissionToJoin(Address joiner)
"Asks" a coordinator if a joiner may join. |
Methods in org.infinispan.distribution with parameters of type Address | |
---|---|
static ConsistentHash |
ConsistentHashHelper.createConsistentHash(Class<? extends ConsistentHash> clazz,
List<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. |
static ConsistentHash |
ConsistentHashHelper.createConsistentHash(Configuration c,
List<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. |
int |
UnionConsistentHash.getDistance(Address a1,
Address a2)
|
int |
ConsistentHash.getDistance(Address a1,
Address a2)
Calculates the logical distance between two addresses. |
int |
DefaultConsistentHash.getDistance(Address a1,
Address a2)
|
int |
ExperimentalDefaultConsistentHash.getDistance(Address a1,
Address a2)
The distance between the first entries in the address array for two caches, a1 and a2. |
int |
UnionConsistentHash.getHashId(Address a)
|
int |
ConsistentHash.getHashId(Address a)
Returns the value between 0 and the hash space limit, or hash id, for a particular address. |
int |
DefaultConsistentHash.getHashId(Address a)
|
int |
ExperimentalDefaultConsistentHash.getHashId(Address a)
|
void |
DistributionManagerImpl.informRehashOnJoin(Address joiner,
boolean starting)
|
void |
DistributionManager.informRehashOnJoin(Address joiner,
boolean starting)
This will cause all nodes to add the joiner to their consistent hash instance (usually by creating a UnionConsistentHash |
boolean |
UnionConsistentHash.isAdjacent(Address a1,
Address a2)
|
boolean |
ConsistentHash.isAdjacent(Address a1,
Address a2)
Tests whether two addresses are logically next to each other in the hash space. |
boolean |
DefaultConsistentHash.isAdjacent(Address a1,
Address a2)
|
boolean |
ExperimentalDefaultConsistentHash.isAdjacent(Address a1,
Address a2)
Two hashes are adjacent if they are next to each other in the consistent hash. |
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)
|
boolean |
DefaultConsistentHash.isKeyLocalToAddress(Address target,
Object key,
int replCount)
|
void |
DistributionManagerImpl.notifyJoinComplete(Address joiner)
|
void |
DistributionManager.notifyJoinComplete(Address joiner)
Notifies a coordinator when a join completes |
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. |
List<Address> |
DistributionManagerImpl.requestPermissionToJoin(Address joiner)
|
List<Address> |
DistributionManager.requestPermissionToJoin(Address joiner)
"Asks" a coordinator if a joiner may join. |
Method parameters in org.infinispan.distribution with type arguments of type Address | |
---|---|
static ConsistentHash |
ConsistentHashHelper.createConsistentHash(Class<? extends ConsistentHash> clazz,
List<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(Class<? extends ConsistentHash> clazz,
List<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. |
static ConsistentHash |
ConsistentHashHelper.createConsistentHash(Class<? extends ConsistentHash> clazz,
List<Address> addresses,
Collection<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. |
static ConsistentHash |
ConsistentHashHelper.createConsistentHash(Class<? extends ConsistentHash> clazz,
List<Address> addresses,
Collection<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. |
static ConsistentHash |
ConsistentHashHelper.createConsistentHash(Configuration c,
List<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,
List<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,
List<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,
List<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. |
void |
DistributionManagerImpl.rehash(List<Address> newMembers,
List<Address> oldMembers)
|
void |
DistributionManagerImpl.rehash(List<Address> newMembers,
List<Address> oldMembers)
|
void |
UnionConsistentHash.setCaches(List<Address> caches)
|
void |
ConsistentHash.setCaches(List<Address> caches)
Sets the collection of cache addresses in the cluster. |
void |
DefaultConsistentHash.setCaches(List<Address> caches)
|
void |
ExperimentalDefaultConsistentHash.setCaches(List<Address> caches)
|
Constructors in org.infinispan.distribution with parameters of type Address | |
---|---|
ExperimentalDefaultConsistentHash.Entry(Address address,
String string,
int differentiator,
int hash)
|
Constructor parameters in org.infinispan.distribution with type arguments of type Address | |
---|---|
LeaveTask(DistributionManagerImpl dmi,
RpcManager rpcManager,
Configuration configuration,
List<Address> leavers,
TransactionLogger transactionLogger,
CommandsFactory cf,
DataContainer dataContainer)
|
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 |
CacheManager.getAddress()
|
Address |
DefaultCacheManager.getAddress()
|
Methods in org.infinispan.manager that return types with arguments of type Address | |
---|---|
List<Address> |
CacheManager.getMembers()
|
List<Address> |
DefaultCacheManager.getMembers()
|
Uses of Address in org.infinispan.notifications.cachemanagerlistener |
---|
Methods in org.infinispan.notifications.cachemanagerlistener with parameters of type Address | |
---|---|
void |
CacheManagerNotifier.notifyViewChange(List<Address> members,
List<Address> oldMembers,
Address myAddress,
int viewId,
boolean b)
Notifies all registered listeners of a viewChange event. |
void |
CacheManagerNotifierImpl.notifyViewChange(List<Address> members,
List<Address> oldMembers,
Address myAddress,
int viewId,
boolean needsToRejoin)
|
Method parameters in org.infinispan.notifications.cachemanagerlistener with type arguments of type Address | |
---|---|
void |
CacheManagerNotifier.notifyViewChange(List<Address> members,
List<Address> oldMembers,
Address myAddress,
int viewId,
boolean b)
Notifies all registered listeners of a viewChange event. |
void |
CacheManagerNotifier.notifyViewChange(List<Address> members,
List<Address> oldMembers,
Address myAddress,
int viewId,
boolean b)
Notifies all registered listeners of a viewChange event. |
void |
CacheManagerNotifierImpl.notifyViewChange(List<Address> members,
List<Address> oldMembers,
Address myAddress,
int viewId,
boolean needsToRejoin)
|
void |
CacheManagerNotifierImpl.notifyViewChange(List<Address> members,
List<Address> oldMembers,
Address myAddress,
int viewId,
boolean needsToRejoin)
|
Uses of Address in org.infinispan.notifications.cachemanagerlistener.event |
---|
Methods in org.infinispan.notifications.cachemanagerlistener.event that return Address | |
---|---|
Address |
EventImpl.getLocalAddress()
|
Address |
ViewChangedEvent.getLocalAddress()
|
Methods in org.infinispan.notifications.cachemanagerlistener.event that return types with arguments of type Address | |
---|---|
List<Address> |
EventImpl.getNewMembers()
|
List<Address> |
ViewChangedEvent.getNewMembers()
|
List<Address> |
EventImpl.getOldMembers()
|
List<Address> |
ViewChangedEvent.getOldMembers()
|
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)
|
Constructors in org.infinispan.notifications.cachemanagerlistener.event with parameters of type Address | |
---|---|
EventImpl(String cacheName,
CacheManager 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,
CacheManager cacheManager,
Event.Type type,
List<Address> newMemberList,
List<Address> oldMemberList,
Address localAddress,
int viewId)
|
|
EventImpl(String cacheName,
CacheManager cacheManager,
Event.Type type,
List<Address> newMemberList,
List<Address> oldMemberList,
Address localAddress,
int viewId)
|
Uses of Address in org.infinispan.remoting |
---|
Methods in org.infinispan.remoting that return Address | |
---|---|
static Address |
MembershipArithmetic.getMemberJoined(List<Address> oldList,
List<Address> newList)
|
static Address |
MembershipArithmetic.getMemberLeft(List<Address> oldList,
List<Address> newList)
|
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 List<Address> |
MembershipArithmetic.getMembersLeft(List<Address> oldList,
List<Address> newList)
|
Method parameters in org.infinispan.remoting with type arguments of type Address | |
---|---|
static Address |
MembershipArithmetic.getMemberJoined(List<Address> oldList,
List<Address> newList)
|
static Address |
MembershipArithmetic.getMemberJoined(List<Address> oldList,
List<Address> newList)
|
static Address |
MembershipArithmetic.getMemberLeft(List<Address> oldList,
List<Address> newList)
|
static Address |
MembershipArithmetic.getMemberLeft(List<Address> oldList,
List<Address> newList)
|
static List<Address> |
MembershipArithmetic.getMembersJoined(List<Address> oldList,
List<Address> newList)
|
static List<Address> |
MembershipArithmetic.getMembersJoined(List<Address> oldList,
List<Address> newList)
|
static List<Address> |
MembershipArithmetic.getMembersLeft(List<Address> oldList,
List<Address> newList)
|
static List<Address> |
MembershipArithmetic.getMembersLeft(List<Address> oldList,
List<Address> newList)
|
Uses of Address in org.infinispan.remoting.responses |
---|
Methods in org.infinispan.remoting.responses with parameters of type Address | |
---|---|
boolean |
ClusteredGetResponseValidityFilter.isAcceptable(Response response,
Address address)
|
Constructor parameters in org.infinispan.remoting.responses with type arguments of type Address | |
---|---|
ClusteredGetResponseValidityFilter(Collection<Address> pendingResponders)
|
Uses of Address in org.infinispan.remoting.rpc |
---|
Methods in org.infinispan.remoting.rpc that return Address | |
---|---|
Address |
RpcManager.getCurrentStateTransferSource()
If RpcManager.retrieveState(String, long) has been invoked and hasn't yet returned (i.e., a state transfer is in
progress), this method will return the current Address from which a state transfer is being attempted. |
Address |
RpcManagerImpl.getCurrentStateTransferSource()
|
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 |
RpcManager.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpc,
boolean sync)
Broadcasts an RPC command to a specified set of recipients |
void |
RpcManagerImpl.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpc,
boolean sync)
|
void |
RpcManager.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpc,
boolean sync,
boolean usePriorityQueue)
Broadcasts an RPC command to a specified set of recipients |
void |
RpcManagerImpl.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpc,
boolean sync,
boolean usePriorityQueue)
|
void |
RpcManagerImpl.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpc,
boolean sync,
boolean usePriorityQueue,
long timeout)
|
List<Response> |
RpcManager.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpcCommand,
ResponseMode mode,
long timeout)
Invokes an RPC call on other caches in the cluster. |
List<Response> |
RpcManagerImpl.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpcCommand,
ResponseMode mode,
long timeout)
|
List<Response> |
RpcManager.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpcCommand,
ResponseMode mode,
long timeout,
boolean usePriorityQueue)
Invokes an RPC call on other caches in the cluster. |
List<Response> |
RpcManagerImpl.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpcCommand,
ResponseMode mode,
long timeout,
boolean usePriorityQueue)
|
List<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. |
List<Response> |
RpcManagerImpl.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpcCommand,
ResponseMode mode,
long timeout,
boolean usePriorityQueue,
ResponseFilter responseFilter)
|
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)
|
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)
|
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. |
void |
RpcManagerImpl.invokeRemotelyInFuture(Collection<Address> recipients,
ReplicableCommand rpc,
NotifyingNotifiableFuture<Object> l)
|
Uses of Address in org.infinispan.remoting.transport |
---|
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. |
Methods in org.infinispan.remoting.transport with parameters of type Address | |
---|---|
boolean |
Transport.retrieveState(String cacheName,
Address address,
long timeout)
Initiates a state retrieval from a specific cache (by typically invoking InboundInvocationHandler.generateState(String, java.io.OutputStream) ), and applies this
state to the current cache via the InboundInvocationHandler.applyState(String, java.io.InputStream)
callback. |
Method parameters in org.infinispan.remoting.transport with type arguments of type Address | |
---|---|
List<Response> |
Transport.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpcCommand,
ResponseMode mode,
long timeout,
boolean usePriorityQueue,
ResponseFilter responseFilter,
boolean supportReplay)
Invokes an RPC call on other caches in the cluster. |
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 |
Fields in org.infinispan.remoting.transport.jgroups declared as Address | |
---|---|
protected Address |
JGroupsTransport.address
|
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()
|
Methods in org.infinispan.remoting.transport.jgroups that return types with arguments of type Address | |
---|---|
List<Address> |
JGroupsTransport.getMembers()
|
List<Address> |
JGroupsTransport.getPhysicalAddresses()
|
Methods in org.infinispan.remoting.transport.jgroups with parameters of type Address | |
---|---|
boolean |
JGroupsTransport.retrieveState(String cacheName,
Address address,
long timeout)
|
Method parameters in org.infinispan.remoting.transport.jgroups with type arguments of type Address | |
---|---|
List<Response> |
JGroupsTransport.invokeRemotely(Collection<Address> recipients,
ReplicableCommand rpcCommand,
ResponseMode mode,
long timeout,
boolean usePriorityQueue,
ResponseFilter responseFilter,
boolean supportReplay)
|
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 | |
---|---|
boolean |
DeadlockDetectingGlobalTransaction.isReplicatingTo(Address address)
Is this global transaction replicating to the given address? |
GlobalTransaction |
GlobalTransactionFactory.newGlobalTransaction(Address addr,
boolean remote)
|
void |
GlobalTransaction.setAddress(Address address)
|
Method parameters in org.infinispan.transaction.xa with type arguments of type Address | |
---|---|
void |
DeadlockDetectingGlobalTransaction.setReplicatingTo(Set<Address> targets)
Sets the set og Address objects this node is replicating to. |
|
Google Analytics | |||||||||
PREV NEXT | FRAMES NO FRAMES |