Uses of Interface
org.infinispan.remoting.transport.Address
-
Packages that use Address Package Description org.infinispan.affinity This package contains theKeyAffinityServiceinterfaces which allow user code to determine mapping of keys onto nodesorg.infinispan.affinity.impl org.infinispan.commands Commands that operate on the cache, either locally or remotely.org.infinispan.commands.irac org.infinispan.commands.remote Meta-commands that wrap other commands for remote execution.org.infinispan.commands.topology org.infinispan.commands.tx Commands that represent transactional lifecycle transitions.org.infinispan.commands.write Commands that alter the state of the cache.org.infinispan.conflict This package contains the APIs that enable users to search for, and amend, data inconsistencies within their cache.org.infinispan.conflict.impl This package contains implementations of the conflict resolution API.org.infinispan.container.entries Entries which are stored in data containers.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.distribution Classes relating to the distributed cache mode.org.infinispan.distribution.ch Consistent Hash interfacesorg.infinispan.distribution.ch.impl org.infinispan.distribution.impl org.infinispan.distribution.topologyaware org.infinispan.interceptors.distribution Interceptors dealing with command replication in distributed/replicated mode.org.infinispan.interceptors.impl Basic interceptorsorg.infinispan.interceptors.locking Interceptors dealing with locking.org.infinispan.manager Cache manager API.org.infinispan.manager.impl org.infinispan.notifications.cachelistener.cluster org.infinispan.notifications.cachelistener.cluster.impl org.infinispan.notifications.cachelistener.event Cache-specific listener eventsorg.infinispan.notifications.cachelistener.event.impl org.infinispan.notifications.cachemanagerlistener CacheManager-specific notifications and eventing.org.infinispan.notifications.cachemanagerlistener.event EmbeddedCacheManager-specific listener eventsorg.infinispan.notifications.cachemanagerlistener.event.impl org.infinispan.partitionhandling.impl org.infinispan.remoting.inboundhandler Handling of inbound commands on remote nodes.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.impl org.infinispan.remoting.transport.jgroups A transport implementation based on JGroups.org.infinispan.scattered SCATTERED CACHE DESIGNorg.infinispan.scattered.impl org.infinispan.security.actions org.infinispan.statetransfer Transfer of state to new caches in a cluster.org.infinispan.stream.impl org.infinispan.topology org.infinispan.transaction.impl org.infinispan.transaction.xa XA transaction support.org.infinispan.transaction.xa.recovery org.infinispan.util.concurrent Thread-safe containers and other concurrency-related utilities, designed to supplement JDK concurrency utilities and containers.org.infinispan.util.logging Infinispan's logging abstractions that delegate to either JDK or Log4J logging engines.org.infinispan.util.logging.events org.infinispan.util.logging.events.impl org.infinispan.xsite org.infinispan.xsite.irac org.infinispan.xsite.statetransfer org.infinispan.xsite.status -
-
Uses of Address in org.infinispan.affinity
Methods in org.infinispan.affinity with parameters of type Address Modifier and Type Method Description KKeyAffinityService. 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 Modifier and Type Method Description static <K,V>
KeyAffinityService<K>KeyAffinityServiceFactory. newKeyAffinityService(Cache<K,V> cache, Collection<Address> filter, KeyGenerator<K> keyGenerator, Executor ex, int keyBufferSize)static <K,V>
KeyAffinityService<K>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. -
Uses of Address in org.infinispan.affinity.impl
Methods in org.infinispan.affinity.impl that return types with arguments of type Address Modifier and Type Method Description Map<Address,BlockingQueue<K>>KeyAffinityServiceImpl. getAddress2KeysMapping()Methods in org.infinispan.affinity.impl with parameters of type Address Modifier and Type Method Description KKeyAffinityServiceImpl. getKeyForAddress(Address address)Constructor parameters in org.infinispan.affinity.impl with type arguments of type Address Constructor Description KeyAffinityServiceImpl(Executor executor, Cache<? extends K,?> cache, KeyGenerator<? extends K> keyGenerator, int bufferSize, Collection<Address> filter, boolean start) -
Uses of Address in org.infinispan.commands
Methods in org.infinispan.commands that return Address Modifier and Type Method Description AddressCommandInvocationId. getAddress()Methods in org.infinispan.commands with parameters of type Address Modifier and Type Method Description InvalidateCommandCommandsFactory. buildInvalidateFromL1Command(Address origin, long flagsBitSet, Collection<Object> keys)InvalidateCommandCommandsFactoryImpl. buildInvalidateFromL1Command(Address origin, long flagsBitSet, Collection<Object> keys)RevokeBiasCommandCommandsFactory. buildRevokeBiasCommand(Address ackTarget, long id, int topologyId, Collection<Object> keys)RevokeBiasCommandCommandsFactoryImpl. buildRevokeBiasCommand(Address ackTarget, long id, int topologyId, Collection<Object> keys)static CommandInvocationIdCommandInvocationId. generateId(Address address)default voidReplicableCommand. setOrigin(Address origin)Sets the sender'sAddress. -
Uses of Address in org.infinispan.commands.irac
Methods in org.infinispan.commands.irac that return Address Modifier and Type Method Description AddressIracCleanupKeyCommand. getOrigin()AddressIracMetadataRequestCommand. getOrigin()AddressIracStateResponseCommand. getOrigin()Methods in org.infinispan.commands.irac with parameters of type Address Modifier and Type Method Description voidIracCleanupKeyCommand. setOrigin(Address origin)voidIracMetadataRequestCommand. setOrigin(Address origin)voidIracStateResponseCommand. setOrigin(Address origin) -
Uses of Address in org.infinispan.commands.remote
Fields in org.infinispan.commands.remote declared as Address Modifier and Type Field Description protected AddressBaseRpcCommand. originMethods in org.infinispan.commands.remote that return Address Modifier and Type Method Description AddressBaseRpcCommand. getOrigin()AddressCacheRpcCommand. getOrigin()Get the origin of the commandAddressCheckTransactionRpcCommand. getOrigin()Methods in org.infinispan.commands.remote with parameters of type Address Modifier and Type Method Description voidBaseRpcCommand. setOrigin(Address origin)voidCacheRpcCommand. setOrigin(Address origin)Set the origin of the commandvoidCheckTransactionRpcCommand. setOrigin(Address origin)Constructors in org.infinispan.commands.remote with parameters of type Address Constructor Description RevokeBiasCommand(ByteString cacheName, Address ackTarget, long id, int topologyId, Collection<Object> keys) -
Uses of Address in org.infinispan.commands.topology
Fields in org.infinispan.commands.topology declared as Address Modifier and Type Field Description protected AddressAbstractCacheControlCommand. originMethods in org.infinispan.commands.topology with parameters of type Address Modifier and Type Method Description voidAbstractCacheControlCommand. setOrigin(Address origin)Constructors in org.infinispan.commands.topology with parameters of type Address Constructor Description CacheJoinCommand(String cacheName, Address origin, CacheJoinInfo joinInfo, int viewId)CacheLeaveCommand(String cacheName, Address origin, int viewId)RebalancePhaseConfirmCommand(String cacheName, Address origin, Throwable throwable, int topologyId, int viewId)RebalanceStartCommand(String cacheName, Address origin, CacheTopology cacheTopology, int viewId)TopologyUpdateCommand(String cacheName, Address origin, CacheTopology cacheTopology, AvailabilityMode availabilityMode, int viewId)TopologyUpdateStableCommand(String cacheName, Address origin, CacheTopology cacheTopology, int viewId) -
Uses of Address in org.infinispan.commands.tx
Methods in org.infinispan.commands.tx that return Address Modifier and Type Method Description AddressAbstractTransactionBoundaryCommand. getOrigin()Methods in org.infinispan.commands.tx with parameters of type Address Modifier and Type Method Description voidAbstractTransactionBoundaryCommand. setOrigin(Address origin) -
Uses of Address in org.infinispan.commands.write
Methods in org.infinispan.commands.write with parameters of type Address Modifier and Type Method Description booleanInvalidateL1Command. 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 Constructor Description InvalidateL1Command(Address writeOrigin, long flagsBitSet, Collection<Object> keys, CommandInvocationId commandInvocationId) -
Uses of Address in org.infinispan.conflict
Methods in org.infinispan.conflict that return types with arguments of type Address Modifier and Type Method Description Map<Address,InternalCacheValue<V>>ConflictManager. getAllVersions(K key)Get all CacheEntry's that exists for a given key.Stream<Map<Address,CacheEntry<K,V>>>ConflictManager. getConflicts()Returns a stream of conflicts detected in the cluster. -
Uses of Address in org.infinispan.conflict.impl
Methods in org.infinispan.conflict.impl that return types with arguments of type Address Modifier and Type Method Description CompletableFuture<List<Map<Address,CacheEntry<K,V>>>>StateReceiver. getAllReplicasForSegment(int segmentId, LocalizedCacheTopology topology, long timeout)Return all replicas of a cache entry for a given segment.CompletableFuture<List<Map<Address,CacheEntry<K,V>>>>StateReceiverImpl. getAllReplicasForSegment(int segmentId, LocalizedCacheTopology topology, long timeout)Map<Address,InternalCacheValue<V>>DefaultConflictManager. getAllVersions(K key)Stream<Map<Address,CacheEntry<K,V>>>DefaultConflictManager. getConflicts()Methods in org.infinispan.conflict.impl with parameters of type Address Modifier and Type Method Description voidStateReceiver. receiveState(Address sender, int topologyId, Collection<StateChunk> stateChunks)voidStateReceiverImpl. receiveState(Address sender, int topologyId, Collection<StateChunk> stateChunks)Method parameters in org.infinispan.conflict.impl with type arguments of type Address Modifier and Type Method Description CompletionStage<Void>DefaultConflictManager. resolveConflicts(CacheTopology topology, Set<Address> preferredNodes)CompletionStage<Void>InternalConflictManager. resolveConflicts(CacheTopology cacheTopology, Set<Address> preferredNodes) -
Uses of Address in org.infinispan.container.entries
Methods in org.infinispan.container.entries that return Address Modifier and Type Method Description AddressRemoteMetadata. getAddress()Constructors in org.infinispan.container.entries with parameters of type Address Constructor Description RemoteMetadata(Address address, EntryVersion version) -
Uses of Address in org.infinispan.context
Methods in org.infinispan.context that return Address Modifier and Type Method Description AddressInvocationContext. getOrigin()Methods in org.infinispan.context with parameters of type Address Modifier and Type Method Description InvocationContextInvocationContextFactory. createRemoteInvocationContext(Address origin)Returns anNonTxInvocationContextwhoseAbstractInvocationContext.isOriginLocal()flag will be true.InvocationContextInvocationContextFactory. createRemoteInvocationContextForCommand(VisitableCommand cacheCommand, Address origin)AsInvocationContextFactory.createRemoteInvocationContext(org.infinispan.remoting.transport.Address), but returning the flags to the context from the Command if any Flag was set.RemoteTxInvocationContextInvocationContextFactory. createRemoteTxInvocationContext(RemoteTransaction tx, Address origin)Returns anRemoteTxInvocationContext. -
Uses of Address in org.infinispan.context.impl
Methods in org.infinispan.context.impl that return Address Modifier and Type Method Description AddressAbstractInvocationContext. getOrigin()AddressImmutableContext. getOrigin()AddressSingleKeyNonTxInvocationContext. getOrigin()Methods in org.infinispan.context.impl that return types with arguments of type Address Modifier and Type Method Description Collection<Address>LocalTxInvocationContext. getRemoteLocksAcquired()Methods in org.infinispan.context.impl with parameters of type Address Modifier and Type Method Description NonTxInvocationContextNonTransactionalInvocationContextFactory. createRemoteInvocationContext(Address origin)NonTxInvocationContextTransactionalInvocationContextFactory. createRemoteInvocationContext(Address origin)InvocationContextAbstractInvocationContextFactory. createRemoteInvocationContextForCommand(VisitableCommand cacheCommand, Address origin)RemoteTxInvocationContextNonTransactionalInvocationContextFactory. createRemoteTxInvocationContext(RemoteTransaction tx, Address origin)RemoteTxInvocationContextTransactionalInvocationContextFactory. createRemoteTxInvocationContext(RemoteTransaction tx, Address origin)protected NonTxInvocationContextTransactionalInvocationContextFactory. newNonTxInvocationContext(Address origin)Method parameters in org.infinispan.context.impl with type arguments of type Address Modifier and Type Method Description voidLocalTxInvocationContext. remoteLocksAcquired(Collection<Address> nodes)Constructors in org.infinispan.context.impl with parameters of type Address Constructor Description AbstractInvocationContext(Address origin)AbstractTxInvocationContext(T cacheTransaction, Address origin)ClearInvocationContext(Address origin)NonTxInvocationContext(int numEntries, Address origin)NonTxInvocationContext(Address origin)SingleKeyNonTxInvocationContext(Address origin) -
Uses of Address in org.infinispan.distribution
Methods in org.infinispan.distribution that return Address Modifier and Type Method Description AddressLocalizedCacheTopology. getLocalAddress()AddressDistributionInfo. primary()Methods in org.infinispan.distribution that return types with arguments of type Address Modifier and Type Method Description Set<Address>LocalizedCacheTopology. getMembersSet()Collection<Address>LocalizedCacheTopology. getWriteOwners(Object key)Collection<Address>LocalizedCacheTopology. getWriteOwners(Collection<?> keys)List<Address>DistributionInfo. readOwners()Collection<Address>DistributionInfo. writeBackups()List<Address>DistributionInfo. writeOwners()Methods in org.infinispan.distribution with parameters of type Address Modifier and Type Method Description voidL1Manager. addRequestor(Object key, Address requestor)Records a request that will be cached in another nodes L1CompletableFuture<?>L1Manager. flushCache(Collection<Object> key, Address origin, boolean assumeOriginKeptEntryInL1)static LocalizedCacheTopologyLocalizedCacheTopology. makeSegmentedSingletonTopology(KeyPartitioner keyPartitioner, int numSegments, Address localAddress)Creates a new local topology that has a single address but multiple segments.static LocalizedCacheTopologyLocalizedCacheTopology. makeSingletonTopology(CacheMode cacheMode, Address localAddress)Constructors in org.infinispan.distribution with parameters of type Address Constructor Description DistributionInfo(int segmentId, Address primary, List<Address> readOwners, List<Address> writeOwners, Collection<Address> writeBackups, Address localAddress)LocalizedCacheTopology(CacheMode cacheMode, CacheTopology cacheTopology, KeyPartitioner keyPartitioner, Address localAddress, boolean connected)Constructor parameters in org.infinispan.distribution with type arguments of type Address Constructor Description DistributionInfo(int segmentId, Address primary, List<Address> readOwners, List<Address> writeOwners, Collection<Address> writeBackups, Address localAddress)DistributionInfo(int segmentId, Address primary, List<Address> readOwners, List<Address> writeOwners, Collection<Address> writeBackups, Address localAddress) -
Uses of Address in org.infinispan.distribution.ch
Methods in org.infinispan.distribution.ch that return Address Modifier and Type Method Description AddressConsistentHash. locatePrimaryOwnerForSegment(int segmentId)Methods in org.infinispan.distribution.ch that return types with arguments of type Address Modifier and Type Method Description default Map<Address,Float>ConsistentHash. getCapacityFactors()The capacity factor of each member.List<Address>ConsistentHash. getMembers()Should return the addresses of the nodes used to create this consistent hash.List<Address>ConsistentHash. locateOwnersForSegment(int segmentId)Methods in org.infinispan.distribution.ch with parameters of type Address Modifier and Type Method Description Set<Integer>ConsistentHash. getPrimarySegmentsForOwner(Address owner)Returns the segments that this cache member is the primary owner for.Set<Integer>ConsistentHash. getSegmentsForOwner(Address owner)Returns the segments owned by a cache member.default booleanConsistentHash. isSegmentLocalToNode(Address nodeAddress, int segmentId)Check if a segment is local to a given member.Method parameters in org.infinispan.distribution.ch with type arguments of type Address Modifier and Type Method Description CHConsistentHashFactory. create(int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors)Deprecated.Create a new consistent hash instance.CHConsistentHashFactory. create(int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors)Deprecated.Create a new consistent hash instance.default CHConsistentHashFactory. create(org.infinispan.commons.hash.Hash hashFunction, int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors)Deprecated.since 11.0.default CHConsistentHashFactory. create(org.infinispan.commons.hash.Hash hashFunction, int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors)Deprecated.since 11.0.default ConsistentHashConsistentHash. remapAddresses(UnaryOperator<Address> remapper)Returns a new ConsistentHash with the addresses remapped according to the providedUnaryOperator.CHConsistentHashFactory. updateMembers(CH baseCH, List<Address> newMembers, Map<Address,Float> capacityFactors)Deprecated.Updates an existing consistent hash instance to remove owners that are not in thenewMemberslist.CHConsistentHashFactory. updateMembers(CH baseCH, List<Address> newMembers, Map<Address,Float> capacityFactors)Deprecated.Updates an existing consistent hash instance to remove owners that are not in thenewMemberslist. -
Uses of Address in org.infinispan.distribution.ch.impl
Fields in org.infinispan.distribution.ch.impl with type parameters of type Address Modifier and Type Field Description protected Map<Address,Float>AbstractConsistentHashFactory.Builder. capacityFactorsprotected Map<Address,Float>AbstractConsistentHashFactory.Builder. capacityFactorsprotected List<Address>AbstractConsistentHash. membersThe membership of the cache topology that uses this CH.protected List<Address>AbstractConsistentHashFactory.Builder. membersprotected List<Address>AbstractConsistentHashFactory.Builder. membersMethods in org.infinispan.distribution.ch.impl that return Address Modifier and Type Method Description protected AddressDefaultConsistentHashFactory. findNewBackupOwner(DefaultConsistentHashFactory.Builder builder, Collection<Address> excludes, Address owner)protected AddressAbstractConsistentHashFactory. findNewPrimaryOwner(org.infinispan.distribution.ch.impl.AbstractConsistentHashFactory.Builder builder, Collection<Address> candidates, Address primaryOwner)protected AddressAbstractConsistentHashFactory. findWorstPrimaryOwner(org.infinispan.distribution.ch.impl.AbstractConsistentHashFactory.Builder builder, List<Address> nodes)AddressDefaultConsistentHashFactory.Builder. getPrimaryOwner(int segment)AddressScatteredConsistentHashFactory.Builder. getPrimaryOwner(int segment)AddressDefaultConsistentHash. locatePrimaryOwnerForSegment(int segmentId)AddressReplicatedConsistentHash. locatePrimaryOwnerForSegment(int segmentId)AddressScatteredConsistentHash. locatePrimaryOwnerForSegment(int segmentId)Methods in org.infinispan.distribution.ch.impl that return types with arguments of type Address Modifier and Type Method Description List<Address>DefaultConsistentHashFactory.Builder. getBackupOwners(int segment)Map<Address,Float>AbstractConsistentHash. getCapacityFactors()List<Address>AbstractConsistentHash. getMembers()List<Address>ReplicatedConsistentHash. getMembers()List<Address>DefaultConsistentHashFactory.Builder. getOwners(int segment)List<Address>DefaultConsistentHash. locateOwnersForSegment(int segmentId)List<Address>ReplicatedConsistentHash. locateOwnersForSegment(int segmentId)List<Address>ScatteredConsistentHash. locateOwnersForSegment(int segmentId)protected static List<Address>AbstractConsistentHash. parseMembers(ScopedPersistentState state)protected Map<Address,Float>AbstractConsistentHash. remapCapacityFactors(UnaryOperator<Address> remapper)protected List<Address>AbstractConsistentHash. remapMembers(UnaryOperator<Address> remapper)protected Map<Address,Float>AbstractConsistentHash. unionCapacityFactors(AbstractConsistentHash ch2)Methods in org.infinispan.distribution.ch.impl with parameters of type Address Modifier and Type Method Description booleanDefaultConsistentHashFactory.Builder. addOwner(int segment, Address owner)voidDefaultConsistentHashFactory.Builder. addPrimaryOwner(int segment, Address newPrimaryOwner)voidScatteredConsistentHashFactory.Builder. addPrimaryOwner(int segment, Address newPrimaryOwner)voidOwnershipStatistics. decOwned(Address a)voidOwnershipStatistics. decPrimaryOwned(Address a)protected AddressDefaultConsistentHashFactory. findNewBackupOwner(DefaultConsistentHashFactory.Builder builder, Collection<Address> excludes, Address owner)protected AddressAbstractConsistentHashFactory. findNewPrimaryOwner(org.infinispan.distribution.ch.impl.AbstractConsistentHashFactory.Builder builder, Collection<Address> candidates, Address primaryOwner)intDefaultConsistentHashFactory.Builder. getOwned(Address node)intOwnershipStatistics. getOwned(Address a)intScatteredConsistentHashFactory.Builder. getOwned(Address node)intDefaultConsistentHashFactory.Builder. getPrimaryOwned(Address node)intOwnershipStatistics. getPrimaryOwned(Address a)intScatteredConsistentHashFactory.Builder. getPrimaryOwned(Address node)Set<Integer>DefaultConsistentHash. getPrimarySegmentsForOwner(Address owner)Set<Integer>ReplicatedConsistentHash. getPrimarySegmentsForOwner(Address owner)Set<Integer>ScatteredConsistentHash. getPrimarySegmentsForOwner(Address owner)Set<Integer>DefaultConsistentHash. getSegmentsForOwner(Address owner)Set<Integer>ReplicatedConsistentHash. getSegmentsForOwner(Address owner)Set<Integer>ScatteredConsistentHash. getSegmentsForOwner(Address owner)voidOwnershipStatistics. incOwned(Address a)voidOwnershipStatistics. incPrimaryOwned(Address a)booleanDefaultConsistentHash. isSegmentLocalToNode(Address nodeAddress, int segmentId)booleanReplicatedConsistentHash. isSegmentLocalToNode(Address nodeAddress, int segmentId)booleanScatteredConsistentHash. isSegmentLocalToNode(Address nodeAddress, int segmentId)booleanDefaultConsistentHashFactory.Builder. removeOwner(int segment, Address owner)voidDefaultConsistentHashFactory.Builder. replacePrimaryOwnerWithBackup(int segment, Address newPrimaryOwner)Method parameters in org.infinispan.distribution.ch.impl with type arguments of type Address Modifier and Type Method Description booleanDefaultConsistentHashFactory.Builder. addOwners(int segment, Collection<Address> newOwners)protected voidAbstractConsistentHashFactory. checkCapacityFactors(List<Address> members, Map<Address,Float> capacityFactors)protected voidAbstractConsistentHashFactory. checkCapacityFactors(List<Address> members, Map<Address,Float> capacityFactors)intDefaultConsistentHashFactory.Builder. computeActualNumOwners(int numOwners, List<Address> members, Map<Address,Float> capacityFactors)intDefaultConsistentHashFactory.Builder. computeActualNumOwners(int numOwners, List<Address> members, Map<Address,Float> capacityFactors)DefaultConsistentHashDefaultConsistentHashFactory. create(int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors)DefaultConsistentHashDefaultConsistentHashFactory. create(int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors)ReplicatedConsistentHashReplicatedConsistentHashFactory. create(int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors)ReplicatedConsistentHashReplicatedConsistentHashFactory. create(int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors)ScatteredConsistentHashScatteredConsistentHashFactory. create(int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors)ScatteredConsistentHashScatteredConsistentHashFactory. create(int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors)DefaultConsistentHashSyncConsistentHashFactory. create(int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors)DefaultConsistentHashSyncConsistentHashFactory. create(int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors)ReplicatedConsistentHashSyncReplicatedConsistentHashFactory. create(int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors)ReplicatedConsistentHashSyncReplicatedConsistentHashFactory. create(int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors)protected TopologyAwareSyncConsistentHashFactory.BuilderTopologyAwareSyncConsistentHashFactory. createBuilder(int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors)protected TopologyAwareSyncConsistentHashFactory.BuilderTopologyAwareSyncConsistentHashFactory. createBuilder(int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors)protected AddressDefaultConsistentHashFactory. findNewBackupOwner(DefaultConsistentHashFactory.Builder builder, Collection<Address> excludes, Address owner)protected AddressAbstractConsistentHashFactory. findNewPrimaryOwner(org.infinispan.distribution.ch.impl.AbstractConsistentHashFactory.Builder builder, Collection<Address> candidates, Address primaryOwner)protected AddressAbstractConsistentHashFactory. findWorstPrimaryOwner(org.infinispan.distribution.ch.impl.AbstractConsistentHashFactory.Builder builder, List<Address> nodes)protected static voidAbstractConsistentHash. mergeLists(List<Address> dest, List<Address> src)Adds all elements fromsrclist that do not already exist indestlist to the latter.ConsistentHashDefaultConsistentHash. remapAddresses(UnaryOperator<Address> remapper)ConsistentHashReplicatedConsistentHash. remapAddresses(UnaryOperator<Address> remapper)ConsistentHashScatteredConsistentHash. remapAddresses(UnaryOperator<Address> remapper)protected Map<Address,Float>AbstractConsistentHash. remapCapacityFactors(UnaryOperator<Address> remapper)protected List<Address>AbstractConsistentHash. remapMembers(UnaryOperator<Address> remapper)DefaultConsistentHashDefaultConsistentHashFactory. updateMembers(DefaultConsistentHash baseCH, List<Address> actualMembers, Map<Address,Float> actualCapacityFactors)Leavers are removed and segments without owners are assigned new owners.DefaultConsistentHashDefaultConsistentHashFactory. updateMembers(DefaultConsistentHash baseCH, List<Address> actualMembers, Map<Address,Float> actualCapacityFactors)Leavers are removed and segments without owners are assigned new owners.ReplicatedConsistentHashReplicatedConsistentHashFactory. updateMembers(ReplicatedConsistentHash baseCH, List<Address> newMembers, Map<Address,Float> actualCapacityFactors)ReplicatedConsistentHashReplicatedConsistentHashFactory. updateMembers(ReplicatedConsistentHash baseCH, List<Address> newMembers, Map<Address,Float> actualCapacityFactors)ScatteredConsistentHashScatteredConsistentHashFactory. updateMembers(ScatteredConsistentHash baseCH, List<Address> actualMembers, Map<Address,Float> actualCapacityFactors)Leavers are removed and segments without owners are assigned new owners.ScatteredConsistentHashScatteredConsistentHashFactory. updateMembers(ScatteredConsistentHash baseCH, List<Address> actualMembers, Map<Address,Float> actualCapacityFactors)Leavers are removed and segments without owners are assigned new owners.DefaultConsistentHashSyncConsistentHashFactory. updateMembers(DefaultConsistentHash baseCH, List<Address> newMembers, Map<Address,Float> actualCapacityFactors)DefaultConsistentHashSyncConsistentHashFactory. updateMembers(DefaultConsistentHash baseCH, List<Address> newMembers, Map<Address,Float> actualCapacityFactors)ReplicatedConsistentHashSyncReplicatedConsistentHashFactory. updateMembers(ReplicatedConsistentHash baseCH, List<Address> newMembers, Map<Address,Float> actualCapacityFactors)ReplicatedConsistentHashSyncReplicatedConsistentHashFactory. updateMembers(ReplicatedConsistentHash baseCH, List<Address> newMembers, Map<Address,Float> actualCapacityFactors)Constructors in org.infinispan.distribution.ch.impl with parameters of type Address Constructor Description ScatteredConsistentHash(int numSegments, List<Address> members, Map<Address,Float> capacityFactors, Address[] segmentOwners, boolean isRebalanced)Constructor parameters in org.infinispan.distribution.ch.impl with type arguments of type Address Constructor Description AbstractConsistentHash(int numSegments, List<Address> members, float[] capacityFactors)AbstractConsistentHash(int numSegments, List<Address> members, Map<Address,Float> capacityFactors)AbstractConsistentHash(int numSegments, List<Address> members, Map<Address,Float> capacityFactors)Builder(int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors)Builder(int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors)Builder(DefaultConsistentHash baseCH, List<Address> actualMembers, Map<Address,Float> actualCapacityFactors)Builder(DefaultConsistentHash baseCH, List<Address> actualMembers, Map<Address,Float> actualCapacityFactors)Builder(int numSegments, List<Address> members, Map<Address,Float> capacityFactors)Builder(int numSegments, List<Address> members, Map<Address,Float> capacityFactors)Builder(ScatteredConsistentHash baseCH, List<Address> actualMembers, Map<Address,Float> actualCapacityFactors)Builder(ScatteredConsistentHash baseCH, List<Address> actualMembers, Map<Address,Float> actualCapacityFactors)Builder(int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors)Builder(int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors)DefaultConsistentHash(int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors, List<Address>[] segmentOwners)DefaultConsistentHash(int numOwners, int numSegments, List<Address> members, Map<Address,Float> capacityFactors, List<Address>[] segmentOwners)OwnershipStatistics(List<Address> nodes)OwnershipStatistics(ConsistentHash ch, List<Address> activeNodes)ReplicatedConsistentHash(List<Address> members, int[] primaryOwners)ScatteredConsistentHash(int numSegments, List<Address> members, Map<Address,Float> capacityFactors, Address[] segmentOwners, boolean isRebalanced)ScatteredConsistentHash(int numSegments, List<Address> members, Map<Address,Float> capacityFactors, Address[] segmentOwners, boolean isRebalanced) -
Uses of Address in org.infinispan.distribution.impl
Methods in org.infinispan.distribution.impl with parameters of type Address Modifier and Type Method Description voidL1ManagerImpl. addRequestor(Object key, Address origin)CompletableFuture<?>L1ManagerImpl. flushCache(Collection<Object> keys, Address origin, boolean assumeOriginKeptEntryInL1)static LocalizedCacheTopologyDistributionManagerImpl. makeSingletonTopology(CacheMode cacheMode, KeyPartitioner keyPartitioner, int numSegments, Address localAddress) -
Uses of Address in org.infinispan.distribution.topologyaware
Methods in org.infinispan.distribution.topologyaware that return types with arguments of type Address Modifier and Type Method Description Collection<Address>TopologyInfo. getMachineNodes(String site, String rack, String machine)Collection<Address>TopologyInfo. getRackNodes(String site, String rack)Collection<Address>TopologyInfo. getSiteNodes(String site)Methods in org.infinispan.distribution.topologyaware with parameters of type Address Modifier and Type Method Description booleanTopologyInfo. duplicateLocation(TopologyLevel level, Collection<Address> addresses, Address candidate, boolean excludeCandidate)floatTopologyInfo. getExpectedOwnedSegments(Address address)floatTopologyInfo. getExpectedPrimarySegments(Address address)ObjectTopologyInfo. getLocationId(TopologyLevel level, Address address)intTopologyInfo. getMachineIndex(Address address)intTopologyInfo. getRackIndex(Address address)intTopologyInfo. getSiteIndex(Address address)Method parameters in org.infinispan.distribution.topologyaware with type arguments of type Address Modifier and Type Method Description floatTopologyInfo. computeTotalCapacity(Collection<Address> nodes, Map<Address,Float> capacityFactors)floatTopologyInfo. computeTotalCapacity(Collection<Address> nodes, Map<Address,Float> capacityFactors)booleanTopologyInfo. duplicateLocation(TopologyLevel level, Collection<Address> addresses, Address candidate, boolean excludeCandidate)intTopologyInfo. getDistinctLocationsCount(TopologyLevel level, Collection<Address> addresses)Constructor parameters in org.infinispan.distribution.topologyaware with type arguments of type Address Constructor Description TopologyInfo(int numSegments, int numOwners, Collection<Address> members, Map<Address,Float> capacityFactors)TopologyInfo(int numSegments, int numOwners, Collection<Address> members, Map<Address,Float> capacityFactors) -
Uses of Address in org.infinispan.interceptors.distribution
Methods in org.infinispan.interceptors.distribution with parameters of type Address Modifier and Type Method Description voidBiasedCollector. addPendingAcks(boolean success, Address[] waitFor)default ValidResponseBiasedCollector. addResponse(Address sender, Response response)SuccessfulResponseRemoteGetSingleKeyCollector. addResponse(Address sender, Response response)protected voidBiasedScatteredDistributionInterceptor. completeManyWriteOnPrimaryOriginator(WriteCommand command, Address backup, org.infinispan.interceptors.distribution.CountDownCompletableFuture future)protected voidScatteredDistributionInterceptor. completeManyWriteOnPrimaryOriginator(WriteCommand command, Address backup, org.infinispan.interceptors.distribution.CountDownCompletableFuture future)This is a hook for bias-enabled mode where the primary performs additional RPCs but replication to another node.protected CompletionStage<?>BiasedScatteredDistributionInterceptor. completeSingleWriteOnPrimaryOriginator(DataWriteCommand command, Address backup, CompletionStage<?> rpcFuture)protected CompletionStage<?>ScatteredDistributionInterceptor. completeSingleWriteOnPrimaryOriginator(DataWriteCommand command, Address backup, CompletionStage<?> rpcFuture)This is a hook for bias-enabled mode where the primary performs additional RPCs but replication to another node.protected ObjectBaseDistributionInterceptor. invokeRemotely(InvocationContext ctx, DataWriteCommand command, Address primaryOwner)protected CompletionStage<ValidResponse>BiasedScatteredDistributionInterceptor. manyWriteOnRemotePrimary(Address target, WriteCommand command, CommandAckCollector.MultiTargetCollector multiTargetCollector)protected CompletionStage<ValidResponse>ScatteredDistributionInterceptor. manyWriteOnRemotePrimary(Address target, WriteCommand command, CommandAckCollector.MultiTargetCollector multiTargetCollector)protected CompletionStage<ValidResponse>BiasedScatteredDistributionInterceptor. singleWriteOnRemotePrimary(Address target, DataWriteCommand command)protected CompletionStage<ValidResponse>ScatteredDistributionInterceptor. singleWriteOnRemotePrimary(Address target, DataWriteCommand command)This method is called by a non-owner sending write request to the primary owner -
Uses of Address in org.infinispan.interceptors.impl
Methods in org.infinispan.interceptors.impl with parameters of type Address Modifier and Type Method Description protected static RuntimeExceptionClusteringInterceptor. unexpected(Address sender, Response response)Method parameters in org.infinispan.interceptors.impl with type arguments of type Address Modifier and Type Method Description protected static SuccessfulResponseClusteringInterceptor. getSuccessfulResponseOrFail(Map<Address,Response> responseMap, CompletableFuture<?> future, Consumer<Response> cacheNotFound) -
Uses of Address in org.infinispan.interceptors.locking
Methods in org.infinispan.interceptors.locking that return Address Modifier and Type Method Description AddressClusteringDependentLogic.AbstractClusteringDependentLogic. getAddress()AddressClusteringDependentLogic. getAddress()AddressClusteringDependentLogic.LocalLogic. getAddress()AddressOrderedClusteringDependentLogic. getAddress() -
Uses of Address in org.infinispan.manager
Methods in org.infinispan.manager that return Address Modifier and Type Method Description AddressDefaultCacheManager. getAddress()Warning: the address may benullbefore the first clustered cache starts and after all the clustered caches have been stopped.AddressEmbeddedCacheManager. getAddress()Warning: the address may benullbefore the first clustered cache starts and after all the clustered caches have been stopped.AddressDefaultCacheManager. getCoordinator()AddressEmbeddedCacheManager. getCoordinator()Methods in org.infinispan.manager that return types with arguments of type Address Modifier and Type Method Description List<Address>DefaultCacheManager. getMembers()List<Address>EmbeddedCacheManager. getMembers()Method parameters in org.infinispan.manager with type arguments of type Address Modifier and Type Method Description ClusterExecutorClusterExecutor. filterTargets(Collection<Address> addresses)Allows for filtering of address nodes by only allowing addresses in this collection from being contacted.ClusterExecutorClusterExecutor. filterTargets(Predicate<? super Address> predicate)Allows for filtering of address nodes dynamically per invocation.ClusterExecutorClusterExecutor. filterTargets(ClusterExecutionPolicy policy, Predicate<? super Address> predicate)Allows for filtering of address nodes dynamically per invocation.<V> CompletableFuture<Void>ClusterExecutor. submitConsumer(Function<? super EmbeddedCacheManager,? extends V> callable, TriConsumer<? super Address,? super V,? super Throwable> triConsumer)Submits the given command to the desired nodes and allows for handling of results as they return.default <V> CompletableFuture<Void>ClusterExecutor. submitConsumer(SerializableFunction<? super EmbeddedCacheManager,? extends V> callable, TriConsumer<? super Address,? super V,? super Throwable> triConsumer)The same asClusterExecutor.submitConsumer(Function, TriConsumer), except the Callable must also implement Serializable. -
Uses of Address in org.infinispan.manager.impl
Methods in org.infinispan.manager.impl that return Address Modifier and Type Method Description AddressAbstractDelegatingEmbeddedCacheManager. getAddress()AddressAbstractDelegatingEmbeddedCacheManager. getCoordinator()Methods in org.infinispan.manager.impl that return types with arguments of type Address Modifier and Type Method Description List<Address>AbstractDelegatingEmbeddedCacheManager. getMembers()Method parameters in org.infinispan.manager.impl with type arguments of type Address Modifier and Type Method Description static ClusterExecutorClusterExecutors. allSubmissionExecutor(Predicate<? super Address> predicate, EmbeddedCacheManager manager, Transport transport, long time, TimeUnit unit, Executor localExecutor, ScheduledExecutorService timeoutExecutor)static ClusterExecutorClusterExecutors. singleNodeSubmissionExecutor(Predicate<? super Address> predicate, EmbeddedCacheManager manager, Transport transport, long time, TimeUnit unit, Executor localExecutor, ScheduledExecutorService timeoutExecutor, int failOverCount) -
Uses of Address in org.infinispan.notifications.cachelistener.cluster
Methods in org.infinispan.notifications.cachelistener.cluster that return Address Modifier and Type Method Description AddressRemoteClusterListener. getOwnerAddress()Methods in org.infinispan.notifications.cachelistener.cluster with parameters of type Address Modifier and Type Method Description voidClusterEventManager. addEvents(Object batchIdentifier, Address target, UUID identifier, Collection<ClusterEvent<K,V>> events, boolean sync)Adds additional cluster events that need to be sent remotely for an event originating locally.Constructors in org.infinispan.notifications.cachelistener.cluster with parameters of type Address Constructor Description ClusterListenerReplicateCallable(String cacheName, UUID identifier, Address origin, CacheEventFilter<K,V> filter, CacheEventConverter<K,V,?> converter, boolean sync, Set<Class<? extends Annotation>> filterAnnotations, DataConversion keyDataConversion, DataConversion valueDataConversion, boolean useStorageFormat)RemoteClusterListener(UUID id, Address origin, CacheNotifier cacheNotifier, CacheManagerNotifier cacheManagerNotifier, ClusterEventManager eventManager, boolean sync) -
Uses of Address in org.infinispan.notifications.cachelistener.cluster.impl
Fields in org.infinispan.notifications.cachelistener.cluster.impl with type parameters of type Address Modifier and Type Field Description protected Map<Address,org.infinispan.notifications.cachelistener.cluster.impl.BatchingClusterEventManagerImpl.TargetEvents<K,V>>BatchingClusterEventManagerImpl.UnicastEventContext. targetsMethods in org.infinispan.notifications.cachelistener.cluster.impl with parameters of type Address Modifier and Type Method Description voidBatchingClusterEventManagerImpl. addEvents(Object batchIdentifier, Address target, UUID identifier, Collection<ClusterEvent<K,V>> events, boolean sync)voidClusterEventManagerStub. addEvents(Object batchIdentifier, Address target, UUID identifier, Collection<ClusterEvent<K,V>> clusterEvents, boolean sync)voidBatchingClusterEventManagerImpl.UnicastEventContext. addTargets(Address address, UUID identifier, Collection<ClusterEvent<K,V>> events, boolean sync) -
Uses of Address in org.infinispan.notifications.cachelistener.event
Methods in org.infinispan.notifications.cachelistener.event that return types with arguments of type Address Modifier and Type Method Description Collection<Address>DataRehashedEvent. getMembersAtEnd()Collection<Address>DataRehashedEvent. getMembersAtStart() -
Uses of Address in org.infinispan.notifications.cachelistener.event.impl
Methods in org.infinispan.notifications.cachelistener.event.impl that return types with arguments of type Address Modifier and Type Method Description Collection<Address>EventImpl. getMembersAtEnd()Collection<Address>EventImpl. getMembersAtStart() -
Uses of Address in org.infinispan.notifications.cachemanagerlistener
Methods in org.infinispan.notifications.cachemanagerlistener with parameters of type Address Modifier and Type Method Description CompletionStage<Void>CacheManagerNotifier. notifyMerge(List<Address> members, List<Address> oldMembers, Address myAddress, int viewId, List<List<Address>> subgroupsMerged)CompletionStage<Void>CacheManagerNotifierImpl. notifyMerge(List<Address> members, List<Address> oldMembers, Address myAddress, int viewId, List<List<Address>> subgroupsMerged)CompletionStage<Void>CacheManagerNotifier. notifyViewChange(List<Address> members, List<Address> oldMembers, Address myAddress, int viewId)Notifies all registered listeners of a viewChange event.CompletionStage<Void>CacheManagerNotifierImpl. notifyViewChange(List<Address> members, List<Address> oldMembers, Address myAddress, int viewId)Method parameters in org.infinispan.notifications.cachemanagerlistener with type arguments of type Address Modifier and Type Method Description CompletionStage<Void>CacheManagerNotifier. notifyMerge(List<Address> members, List<Address> oldMembers, Address myAddress, int viewId, List<List<Address>> subgroupsMerged)CompletionStage<Void>CacheManagerNotifierImpl. notifyMerge(List<Address> members, List<Address> oldMembers, Address myAddress, int viewId, List<List<Address>> subgroupsMerged)CompletionStage<Void>CacheManagerNotifier. notifyViewChange(List<Address> members, List<Address> oldMembers, Address myAddress, int viewId)Notifies all registered listeners of a viewChange event.CompletionStage<Void>CacheManagerNotifierImpl. notifyViewChange(List<Address> members, List<Address> oldMembers, Address myAddress, int viewId) -
Uses of Address in org.infinispan.notifications.cachemanagerlistener.event
Methods in org.infinispan.notifications.cachemanagerlistener.event that return Address Modifier and Type Method Description AddressViewChangedEvent. getLocalAddress()Methods in org.infinispan.notifications.cachemanagerlistener.event that return types with arguments of type Address Modifier and Type Method Description List<Address>ViewChangedEvent. getNewMembers()Gets the current list of members.List<Address>ViewChangedEvent. getOldMembers()Gets the previous list of members.List<List<Address>>MergeEvent. getSubgroupsMerged() -
Uses of Address in org.infinispan.notifications.cachemanagerlistener.event.impl
Methods in org.infinispan.notifications.cachemanagerlistener.event.impl that return Address Modifier and Type Method Description AddressEventImpl. getLocalAddress()Methods in org.infinispan.notifications.cachemanagerlistener.event.impl that return types with arguments of type Address Modifier and Type Method Description List<Address>EventImpl. getNewMembers()List<Address>EventImpl. getOldMembers()List<List<Address>>EventImpl. getSubgroupsMerged()Methods in org.infinispan.notifications.cachemanagerlistener.event.impl with parameters of type Address Modifier and Type Method Description voidEventImpl. setLocalAddress(Address localAddress)Method parameters in org.infinispan.notifications.cachemanagerlistener.event.impl with type arguments of type Address Modifier and Type Method Description voidEventImpl. setNewMembers(List<Address> newMembers)voidEventImpl. setOldMembers(List<Address> oldMembers)voidEventImpl. setSubgroupsMerged(List<List<Address>> subgroupsMerged)Constructors in org.infinispan.notifications.cachemanagerlistener.event.impl with parameters of type Address Constructor Description 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.impl with type arguments of type Address Constructor Description EventImpl(String cacheName, EmbeddedCacheManager cacheManager, Event.Type type, List<Address> newMemberList, List<Address> oldMemberList, Address localAddress, int viewId) -
Uses of Address in org.infinispan.partitionhandling.impl
Methods in org.infinispan.partitionhandling.impl that return types with arguments of type Address Modifier and Type Method Description Map<Address,Float>AvailabilityStrategyContext. getCapacityFactors()List<Address>AvailabilityStrategyContext. getExpectedMembers()The members of the cache.Methods in org.infinispan.partitionhandling.impl with parameters of type Address Modifier and Type Method Description voidAvailabilityStrategy. onGracefulLeave(AvailabilityStrategyContext context, Address leaver)Called when a node leaves gracefully.voidPreferAvailabilityStrategy. onGracefulLeave(AvailabilityStrategyContext context, Address leaver)voidPreferConsistencyStrategy. onGracefulLeave(AvailabilityStrategyContext context, Address leaver)voidAvailabilityStrategy. onJoin(AvailabilityStrategyContext context, Address joiner)Called when a node joins.voidPreferAvailabilityStrategy. onJoin(AvailabilityStrategyContext context, Address joiner)voidPreferConsistencyStrategy. onJoin(AvailabilityStrategyContext context, Address joiner)Method parameters in org.infinispan.partitionhandling.impl with type arguments of type Address Modifier and Type Method Description booleanAvailablePartitionHandlingManager. addPartialCommit1PCTransaction(GlobalTransaction globalTransaction, Collection<Address> affectedNodes, Collection<Object> lockedKeys, List<WriteCommand> modifications)booleanPartitionHandlingManager. addPartialCommit1PCTransaction(GlobalTransaction globalTransaction, Collection<Address> affectedNodes, Collection<Object> lockedKeys, List<WriteCommand> modifications)Adds a partially committed transaction.booleanPartitionHandlingManagerImpl. addPartialCommit1PCTransaction(GlobalTransaction globalTransaction, Collection<Address> affectedNodes, Collection<Object> lockedKeys, List<WriteCommand> modifications)booleanAvailablePartitionHandlingManager. addPartialCommit2PCTransaction(GlobalTransaction globalTransaction, Collection<Address> affectedNodes, Collection<Object> lockedKeys, Map<Object,IncrementableEntryVersion> newVersions)booleanPartitionHandlingManager. addPartialCommit2PCTransaction(GlobalTransaction globalTransaction, Collection<Address> affectedNodes, Collection<Object> lockedKeys, Map<Object,IncrementableEntryVersion> newVersions)Adds a partially committed transaction.booleanPartitionHandlingManagerImpl. addPartialCommit2PCTransaction(GlobalTransaction globalTransaction, Collection<Address> affectedNodes, Collection<Object> lockedKeys, Map<Object,IncrementableEntryVersion> newVersions)booleanAvailablePartitionHandlingManager. addPartialRollbackTransaction(GlobalTransaction globalTransaction, Collection<Address> affectedNodes, Collection<Object> lockedKeys)booleanPartitionHandlingManager. addPartialRollbackTransaction(GlobalTransaction globalTransaction, Collection<Address> affectedNodes, Collection<Object> lockedKeys)Adds a partially aborted transaction.booleanPartitionHandlingManagerImpl. addPartialRollbackTransaction(GlobalTransaction globalTransaction, Collection<Address> affectedNodes, Collection<Object> lockedKeys)ConsistentHashAvailabilityStrategyContext. calculateConflictHash(ConsistentHash preferredHash, Set<ConsistentHash> distinctHashes, List<Address> actualMembers)CacheTopologyPreferAvailabilityStrategy. computePreferredTopology(Map<Address,CacheStatusResponse> statusResponseMap)Ignore the AvailabilityStrategyContext and only compute the preferred topology for testing.protected booleanPreferConsistencyStrategy. isMinorityPartition(List<Address> stableMembers, List<Address> lostMembers)voidAvailabilityStrategy. onClusterViewChange(AvailabilityStrategyContext context, List<Address> clusterMembers)Called when the cluster view changed (e.g.voidPreferAvailabilityStrategy. onClusterViewChange(AvailabilityStrategyContext context, List<Address> clusterMembers)voidPreferConsistencyStrategy. onClusterViewChange(AvailabilityStrategyContext context, List<Address> clusterMembers)voidAvailabilityStrategy. onPartitionMerge(AvailabilityStrategyContext context, Map<Address,CacheStatusResponse> statusResponseMap)Called when two or more partitions merge, to compute the stable and current cache topologies for the merged cluster.voidPreferAvailabilityStrategy. onPartitionMerge(AvailabilityStrategyContext context, Map<Address,CacheStatusResponse> statusResponseMap)voidPreferConsistencyStrategy. onPartitionMerge(AvailabilityStrategyContext context, Map<Address,CacheStatusResponse> statusResponseMap)voidAvailabilityStrategyContext. queueConflictResolution(CacheTopology conflictTopology, Set<Address> preferredNodes)Initiates conflict resolution using the conflictTopology, which should have already been broadcast via {@link this#updateTopologiesAfterMerge(CacheTopology, CacheTopology, AvailabilityMode)}voidAvailabilityStrategyContext. queueRebalance(List<Address> newMembers)Queue (or start) a rebalance.booleanAvailabilityStrategyContext. restartConflictResolution(List<Address> newMembers)If CR is in progress, then this method cancels the current CR and starts a new CR phase with an updated topology based upon newMembers and the previously queued CR topologyvoidAvailabilityStrategyContext. updateAvailabilityMode(List<Address> actualMembers, AvailabilityMode mode, boolean cancelRebalance)Enter a new availability mode.voidAvailabilityStrategyContext. updateCurrentTopology(List<Address> newMembers)Use the configuredConsistentHashFactoryto create a new CH with the givenmembers, but do not start a rebalance. -
Uses of Address in org.infinispan.remoting.inboundhandler
Methods in org.infinispan.remoting.inboundhandler with parameters of type Address Modifier and Type Method Description voidGlobalInboundInvocationHandler. handleFromCluster(Address origin, ReplicableCommand command, Reply reply, DeliverOrder order)voidInboundInvocationHandler. handleFromCluster(Address origin, ReplicableCommand command, Reply reply, DeliverOrder order)Handles theReplicableCommandfrom other node belonging to local site. -
Uses of Address in org.infinispan.remoting.responses
Methods in org.infinispan.remoting.responses that return Address Modifier and Type Method Description Address[]BiasRevocationResponse. getWaitList()Methods in org.infinispan.remoting.responses with parameters of type Address Modifier and Type Method Description booleanClusteredGetResponseValidityFilter. isAcceptable(Response response, Address address)booleanIgnoreExtraResponsesValidityFilter. isAcceptable(Response response, Address address)Constructors in org.infinispan.remoting.responses with parameters of type Address Constructor Description BiasRevocationResponse(Object responseValue, Address[] waitFor)ClusteredGetResponseValidityFilter(Collection<Address> targets, Address self)IgnoreExtraResponsesValidityFilter(Collection<Address> targets, Address self, boolean removeSelf)Constructor parameters in org.infinispan.remoting.responses with type arguments of type Address Constructor Description ClusteredGetResponseValidityFilter(Collection<Address> targets, Address self)IgnoreExtraResponsesValidityFilter(Collection<Address> targets, Address self, boolean removeSelf) -
Uses of Address in org.infinispan.remoting.rpc
Methods in org.infinispan.remoting.rpc that return Address Modifier and Type Method Description AddressRpcManager. getAddress()Returns the address associated with this RpcManager or null if not part of the cluster.AddressRpcManagerImpl. getAddress()Methods in org.infinispan.remoting.rpc that return types with arguments of type Address Modifier and Type Method Description List<Address>RpcManager. getMembers()Returns members of a cluster scoped to the cache owning this RpcManager.List<Address>RpcManagerImpl. getMembers()default CompletableFuture<Map<Address,Response>>RpcManager. invokeRemotelyAsync(Collection<Address> recipients, ReplicableCommand rpc, RpcOptions options)Deprecated.CompletableFuture<Map<Address,Response>>RpcManagerImpl. invokeRemotelyAsync(Collection<Address> recipients, ReplicableCommand rpc, RpcOptions options)Methods in org.infinispan.remoting.rpc with parameters of type Address Modifier and Type Method Description <T> CompletionStage<T>RpcManager. invokeCommand(Address target, ReplicableCommand command, ResponseCollector<T> collector, RpcOptions rpcOptions)Invoke a command on a single node and pass the response to aResponseCollector.<T> CompletionStage<T>RpcManagerImpl. invokeCommand(Address target, ReplicableCommand command, ResponseCollector<T> collector, RpcOptions rpcOptions)booleanResponseFilter. isAcceptable(Response response, Address sender)Determines whether a response from a given sender should be added to the response list of the requestvoidRpcManager. sendTo(Address destination, ReplicableCommand command, DeliverOrder deliverOrder)Asynchronously sends theReplicableCommandto the destination using the specifiedDeliverOrder.voidRpcManagerImpl. sendTo(Address destination, ReplicableCommand command, DeliverOrder deliverOrder)Method parameters in org.infinispan.remoting.rpc with type arguments of type Address Modifier and Type Method Description <T> CompletionStage<T>RpcManager. invokeCommand(Collection<Address> targets, ReplicableCommand command, ResponseCollector<T> collector, RpcOptions rpcOptions)Invoke a command on a collection of node and pass the responses to aResponseCollector.<T> CompletionStage<T>RpcManagerImpl. invokeCommand(Collection<Address> targets, ReplicableCommand command, ResponseCollector<T> collector, RpcOptions rpcOptions)<T> CompletionStage<T>RpcManager. invokeCommands(Collection<Address> targets, Function<Address,ReplicableCommand> commandGenerator, ResponseCollector<T> collector, RpcOptions rpcOptions)Invoke different commands on a collection of nodes and pass the responses to aResponseCollector.<T> CompletionStage<T>RpcManager. invokeCommands(Collection<Address> targets, Function<Address,ReplicableCommand> commandGenerator, ResponseCollector<T> collector, RpcOptions rpcOptions)Invoke different commands on a collection of nodes and pass the responses to aResponseCollector.<T> CompletionStage<T>RpcManagerImpl. invokeCommands(Collection<Address> targets, Function<Address,ReplicableCommand> commandGenerator, ResponseCollector<T> collector, RpcOptions rpcOptions)<T> CompletionStage<T>RpcManagerImpl. invokeCommands(Collection<Address> targets, Function<Address,ReplicableCommand> commandGenerator, ResponseCollector<T> collector, RpcOptions rpcOptions)<T> CompletionStage<T>RpcManager. invokeCommandStaggered(Collection<Address> targets, ReplicableCommand command, ResponseCollector<T> collector, RpcOptions rpcOptions)Invoke a command on a collection of nodes and pass the responses to aResponseCollector.<T> CompletionStage<T>RpcManagerImpl. invokeCommandStaggered(Collection<Address> targets, ReplicableCommand command, ResponseCollector<T> collector, RpcOptions rpcOptions)default CompletableFuture<Map<Address,Response>>RpcManager. invokeRemotelyAsync(Collection<Address> recipients, ReplicableCommand rpc, RpcOptions options)Deprecated.CompletableFuture<Map<Address,Response>>RpcManagerImpl. invokeRemotelyAsync(Collection<Address> recipients, ReplicableCommand rpc, RpcOptions options)voidRpcManager. sendToMany(Collection<Address> destinations, ReplicableCommand command, DeliverOrder deliverOrder)Asynchronously sends theReplicableCommandto the set of destination using the specifiedDeliverOrder.voidRpcManagerImpl. sendToMany(Collection<Address> destinations, ReplicableCommand command, DeliverOrder deliverOrder) -
Uses of Address in org.infinispan.remoting.transport
Subinterfaces of Address in org.infinispan.remoting.transport Modifier and Type Interface Description interfaceTopologyAwareAddressWraps a TopologyUUID JGroups addressClasses in org.infinispan.remoting.transport that implement Address Modifier and Type Class Description classLocalModeAddressRepresents the local node's address.Fields in org.infinispan.remoting.transport declared as Address Modifier and Type Field Description static Address[]Address. EMPTY_ARRAYstatic AddressLocalModeAddress. INSTANCEMethods in org.infinispan.remoting.transport that return Address Modifier and Type Method Description AddressAbstractDelegatingTransport. getAddress()AddressTransport. getAddress()Retrieves the current cache instance's network addressAddressAbstractDelegatingTransport. getCoordinator()AddressTransport. getCoordinator()Methods in org.infinispan.remoting.transport that return types with arguments of type Address Modifier and Type Method Description List<Address>AbstractDelegatingTransport. getMembers()List<Address>Transport. getMembers()Returns a list of members in the current cluster view.List<Address>AbstractDelegatingTransport. getMembersPhysicalAddresses()List<Address>Transport. getMembersPhysicalAddresses()Returns physical addresses of members in the current cluster view.List<Address>AbstractDelegatingTransport. getPhysicalAddresses()List<Address>Transport. getPhysicalAddresses()Retrieves the current cache instance's physical network addresses.Map<Address,Response>AbstractDelegatingTransport. invokeRemotely(Collection<Address> recipients, ReplicableCommand rpcCommand, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)Deprecated.Map<Address,Response>AbstractDelegatingTransport. invokeRemotely(Map<Address,ReplicableCommand> rpcCommands, ResponseMode mode, long timeout, boolean usePriorityQueue, ResponseFilter responseFilter, boolean totalOrder, boolean anycast)Deprecated.Map<Address,Response>AbstractDelegatingTransport. invokeRemotely(Map<Address,ReplicableCommand> rpcCommands, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)Deprecated.default Map<Address,Response>Transport. invokeRemotely(Collection<Address> recipients, ReplicableCommand rpcCommand, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)Deprecated.Since 9.2, please useTransport.invokeCommand(Collection, ReplicableCommand, ResponseCollector, DeliverOrder, long, TimeUnit)instead.default Map<Address,Response>Transport. invokeRemotely(Map<Address,ReplicableCommand> rpcCommands, ResponseMode mode, long timeout, boolean usePriorityQueue, ResponseFilter responseFilter, boolean totalOrder, boolean anycast)Deprecated.default Map<Address,Response>Transport. invokeRemotely(Map<Address,ReplicableCommand> rpcCommands, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)Deprecated.Since 9.2, please useTransport.invokeRemotelyAsync(Collection, ReplicableCommand, ResponseMode, long, ResponseFilter, DeliverOrder, boolean)instead.CompletableFuture<Map<Address,Response>>AbstractDelegatingTransport. invokeRemotelyAsync(Collection<Address> recipients, ReplicableCommand rpcCommand, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)CompletableFuture<Map<Address,Response>>Transport. invokeRemotelyAsync(Collection<Address> recipients, ReplicableCommand rpcCommand, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)Methods in org.infinispan.remoting.transport with parameters of type Address Modifier and Type Method Description protected abstract TValidResponseCollector. addException(Address sender, Exception exception)Process an exception from a target.TResponseCollector. addResponse(Address sender, Response response)Called when a response is received, or when a target node becomes unavailable.TValidResponseCollector. addResponse(Address sender, Response response)TValidSingleResponseCollector. addResponse(Address sender, Response response)protected abstract TValidResponseCollector. addTargetNotFound(Address sender)Process a target leaving the cluster or stopping the cache.protected abstract TValidResponseCollector. addValidResponse(Address sender, ValidResponse response)Process a valid response from a target.ResponseAbstractTransport. checkResponse(Object responseObject, Address sender, boolean ignoreCacheNotFoundResponse)Deprecated.intLocalModeAddress. compareTo(Address o)<T> CompletionStage<T>AbstractDelegatingTransport. invokeCommand(Address target, ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, TimeUnit unit)default <T> CompletionStage<T>Transport. invokeCommand(Address target, ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, TimeUnit unit)Invoke a command on a single node and pass the response to aResponseCollector.static SuspectExceptionResponseCollectors. remoteNodeSuspected(Address sender)voidAbstractDelegatingTransport. sendTo(Address destination, ReplicableCommand rpcCommand, DeliverOrder deliverOrder)voidTransport. sendTo(Address destination, ReplicableCommand rpcCommand, DeliverOrder deliverOrder)Asynchronously sends theReplicableCommandto the destination using the specifiedDeliverOrder.protected abstract TValidSingleResponseCollector. targetNotFound(Address sender)protected TValidSingleResponseCollector. withException(Address sender, Exception exception)protected abstract TValidSingleResponseCollector. withValidResponse(Address sender, ValidResponse response)static org.infinispan.commons.CacheExceptionResponseCollectors. wrapRemoteException(Address sender, Throwable exception)Method parameters in org.infinispan.remoting.transport with type arguments of type Address Modifier and Type Method Description <T> CompletionStage<T>AbstractDelegatingTransport. invokeCommand(Collection<Address> targets, ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, TimeUnit unit)default <T> CompletionStage<T>Transport. invokeCommand(Collection<Address> targets, ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, TimeUnit unit)Invoke a command on a collection of node and pass the responses to aResponseCollector.default <T> CompletionStage<T>Transport. invokeCommandOnAll(Collection<Address> requiredTargets, ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, TimeUnit unit)Invoke a command on all the nodes in the cluster and pass the responses to aResponseCollector.<T> CompletionStage<T>AbstractDelegatingTransport. invokeCommands(Collection<Address> targets, Function<Address,ReplicableCommand> commandGenerator, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, TimeUnit timeUnit)<T> CompletionStage<T>AbstractDelegatingTransport. invokeCommands(Collection<Address> targets, Function<Address,ReplicableCommand> commandGenerator, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, TimeUnit timeUnit)default <T> CompletionStage<T>Transport. invokeCommands(Collection<Address> targets, Function<Address,ReplicableCommand> commandGenerator, ResponseCollector<T> responseCollector, long timeout, DeliverOrder deliverOrder)Deprecated.Introduced in 9.1, but replaced in 9.2 withTransport.invokeCommands(Collection, Function, ResponseCollector, DeliverOrder, long, TimeUnit).default <T> CompletionStage<T>Transport. invokeCommands(Collection<Address> targets, Function<Address,ReplicableCommand> commandGenerator, ResponseCollector<T> responseCollector, long timeout, DeliverOrder deliverOrder)Deprecated.Introduced in 9.1, but replaced in 9.2 withTransport.invokeCommands(Collection, Function, ResponseCollector, DeliverOrder, long, TimeUnit).default <T> CompletionStage<T>Transport. invokeCommands(Collection<Address> targets, Function<Address,ReplicableCommand> commandGenerator, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, TimeUnit timeUnit)Invoke different commands on a collection of nodes and pass the responses to aResponseCollector.default <T> CompletionStage<T>Transport. invokeCommands(Collection<Address> targets, Function<Address,ReplicableCommand> commandGenerator, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, TimeUnit timeUnit)Invoke different commands on a collection of nodes and pass the responses to aResponseCollector.<T> CompletionStage<T>AbstractDelegatingTransport. invokeCommandStaggered(Collection<Address> targets, ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, TimeUnit unit)default <T> CompletionStage<T>Transport. invokeCommandStaggered(Collection<Address> targets, ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, TimeUnit unit)Invoke a command on a collection of nodes and pass the responses to aResponseCollector.Map<Address,Response>AbstractDelegatingTransport. invokeRemotely(Collection<Address> recipients, ReplicableCommand rpcCommand, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)Deprecated.Map<Address,Response>AbstractDelegatingTransport. invokeRemotely(Map<Address,ReplicableCommand> rpcCommands, ResponseMode mode, long timeout, boolean usePriorityQueue, ResponseFilter responseFilter, boolean totalOrder, boolean anycast)Deprecated.Map<Address,Response>AbstractDelegatingTransport. invokeRemotely(Map<Address,ReplicableCommand> rpcCommands, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)Deprecated.default Map<Address,Response>Transport. invokeRemotely(Collection<Address> recipients, ReplicableCommand rpcCommand, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)Deprecated.Since 9.2, please useTransport.invokeCommand(Collection, ReplicableCommand, ResponseCollector, DeliverOrder, long, TimeUnit)instead.default Map<Address,Response>Transport. invokeRemotely(Map<Address,ReplicableCommand> rpcCommands, ResponseMode mode, long timeout, boolean usePriorityQueue, ResponseFilter responseFilter, boolean totalOrder, boolean anycast)Deprecated.default Map<Address,Response>Transport. invokeRemotely(Map<Address,ReplicableCommand> rpcCommands, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)Deprecated.Since 9.2, please useTransport.invokeRemotelyAsync(Collection, ReplicableCommand, ResponseMode, long, ResponseFilter, DeliverOrder, boolean)instead.CompletableFuture<Map<Address,Response>>AbstractDelegatingTransport. invokeRemotelyAsync(Collection<Address> recipients, ReplicableCommand rpcCommand, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)CompletableFuture<Map<Address,Response>>Transport. invokeRemotelyAsync(Collection<Address> recipients, ReplicableCommand rpcCommand, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)voidAbstractDelegatingTransport. sendToMany(Collection<Address> destinations, ReplicableCommand rpcCommand, DeliverOrder deliverOrder)voidTransport. sendToMany(Collection<Address> destinations, ReplicableCommand rpcCommand, DeliverOrder deliverOrder)Asynchronously sends theReplicableCommandto the set of destination using the specifiedDeliverOrder. -
Uses of Address in org.infinispan.remoting.transport.impl
Fields in org.infinispan.remoting.transport.impl with type parameters of type Address Modifier and Type Field Description protected HashMap<Address,Response>MapResponseCollector. mapMethods in org.infinispan.remoting.transport.impl that return Address Modifier and Type Method Description protected AddressMultiTargetRequest. getTarget(int i)Methods in org.infinispan.remoting.transport.impl that return types with arguments of type Address Modifier and Type Method Description protected Map<Address,Response>FilterMapResponseCollector. addException(Address sender, Exception exception)protected Map<Address,Response>MapResponseCollector. addException(Address sender, Exception exception)Map<Address,Response>PassthroughMapResponseCollector. addResponse(Address sender, Response response)protected Map<Address,Response>FilterMapResponseCollector. addTargetNotFound(Address sender)protected Map<Address,Response>FilterMapResponseCollector. addValidResponse(Address sender, ValidResponse response)protected Map<Address,Response>MapResponseCollector. addValidResponse(Address sender, ValidResponse response)Map<Address,Response>FilterMapResponseCollector. finish()Map<Address,Response>MapResponseCollector. finish()Map<Address,Response>PassthroughMapResponseCollector. finish()protected Map<Address,Response>SingletonMapResponseCollector. targetNotFound(Address sender)protected Map<Address,Response>SingletonMapResponseCollector. withValidResponse(Address sender, ValidResponse response)Methods in org.infinispan.remoting.transport.impl with parameters of type Address Modifier and Type Method Description protected Map<Address,Response>FilterMapResponseCollector. addException(Address sender, Exception exception)protected Map<Address,Response>MapResponseCollector. addException(Address sender, Exception exception)protected VoidVoidResponseCollector. addException(Address sender, Exception exception)Map<Address,Response>PassthroughMapResponseCollector. addResponse(Address sender, Response response)ResponsePassthroughSingleResponseCollector. addResponse(Address sender, Response response)voidRequestRepository. addResponse(long requestId, Address sender, Response response)protected Map<Address,Response>FilterMapResponseCollector. addTargetNotFound(Address sender)protected VoidVoidResponseCollector. addTargetNotFound(Address sender)protected Map<Address,Response>FilterMapResponseCollector. addValidResponse(Address sender, ValidResponse response)protected Map<Address,Response>MapResponseCollector. addValidResponse(Address sender, ValidResponse response)protected VoidVoidResponseCollector. addValidResponse(Address sender, ValidResponse response)voidMultiTargetRequest. onResponse(Address sender, Response response)voidRequest. onResponse(Address sender, Response response)Called when a response is received for this response.voidSingleTargetRequest. onResponse(Address sender, Response response)protected ValidResponseSingleResponseCollector. targetNotFound(Address sender)protected Map<Address,Response>SingletonMapResponseCollector. targetNotFound(Address sender)protected ValidResponseSingleResponseCollector. withValidResponse(Address sender, ValidResponse response)protected Map<Address,Response>SingletonMapResponseCollector. withValidResponse(Address sender, ValidResponse response)Method parameters in org.infinispan.remoting.transport.impl with type arguments of type Address Modifier and Type Method Description booleanMultiTargetRequest. onNewView(Set<Address> members)booleanRequest. onNewView(Set<Address> members)Called when the node received a new cluster view.booleanSingleTargetRequest. onNewView(Set<Address> members)Constructors in org.infinispan.remoting.transport.impl with parameters of type Address Constructor Description MultiTargetRequest(ResponseCollector<T> responseCollector, long requestId, RequestRepository repository, Collection<Address> targets, Address excluded)SingleTargetRequest(ResponseCollector<T> wrapper, long requestId, RequestRepository repository, Address target)Constructor parameters in org.infinispan.remoting.transport.impl with type arguments of type Address Constructor Description MultiTargetRequest(ResponseCollector<T> responseCollector, long requestId, RequestRepository repository, Collection<Address> targets, Address excluded) -
Uses of Address in org.infinispan.remoting.transport.jgroups
Classes in org.infinispan.remoting.transport.jgroups that implement Address Modifier and Type Class Description classJGroupsAddressAn encapsulation of a JGroups AddressclassJGroupsTopologyAwareAddressAn encapsulation of a JGroupsExtendedUUIDwith a site id, a rack id, and a machine id.Fields in org.infinispan.remoting.transport.jgroups declared as Address Modifier and Type Field Description protected AddressJGroupsTransport. addressprotected AddressJGroupsTransport. physicalAddressMethods in org.infinispan.remoting.transport.jgroups that return Address Modifier and Type Method Description static AddressJGroupsAddressCache. fromJGroupsAddress(org.jgroups.Address jgroupsAddress)AddressJGroupsTransport. getAddress()AddressClusterView. getCoordinator()AddressJGroupsTransport. getCoordinator()AddressSuspectException. getSuspect()Methods in org.infinispan.remoting.transport.jgroups that return types with arguments of type Address Modifier and Type Method Description List<Address>ClusterView. getMembers()List<Address>JGroupsTransport. getMembers()List<Address>JGroupsTransport. getMembersPhysicalAddresses()Set<Address>ClusterView. getMembersSet()List<Address>JGroupsTransport. getPhysicalAddresses()Map<Address,Response>JGroupsTransport. invokeRemotely(Map<Address,ReplicableCommand> commands, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)Deprecated.CompletableFuture<Map<Address,Response>>JGroupsTransport. invokeRemotelyAsync(Collection<Address> recipients, ReplicableCommand command, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)Methods in org.infinispan.remoting.transport.jgroups with parameters of type Address Modifier and Type Method Description intJGroupsAddress. compareTo(Address o)<T> CompletionStage<T>JGroupsTransport. invokeCommand(Address target, ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, TimeUnit unit)voidSingleSiteRequest. onResponse(Address sender, Response response)voidStaggeredRequest. onResponse(Address sender, Response response)voidJGroupsTransport. sendTo(Address destination, ReplicableCommand command, DeliverOrder deliverOrder)Method parameters in org.infinispan.remoting.transport.jgroups with type arguments of type Address Modifier and Type Method Description <T> CompletionStage<T>JGroupsTransport. invokeCommand(Collection<Address> targets, ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, TimeUnit unit)<T> CompletionStage<T>JGroupsTransport. invokeCommandOnAll(Collection<Address> requiredTargets, ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, TimeUnit unit)<T> CompletionStage<T>JGroupsTransport. invokeCommands(Collection<Address> targets, Function<Address,ReplicableCommand> commandGenerator, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, TimeUnit timeUnit)<T> CompletionStage<T>JGroupsTransport. invokeCommands(Collection<Address> targets, Function<Address,ReplicableCommand> commandGenerator, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, TimeUnit timeUnit)<T> CompletionStage<T>JGroupsTransport. invokeCommandStaggered(Collection<Address> targets, ReplicableCommand command, ResponseCollector<T> collector, DeliverOrder deliverOrder, long timeout, TimeUnit unit)Map<Address,Response>JGroupsTransport. invokeRemotely(Map<Address,ReplicableCommand> commands, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)Deprecated.CompletableFuture<Map<Address,Response>>JGroupsTransport. invokeRemotelyAsync(Collection<Address> recipients, ReplicableCommand command, ResponseMode mode, long timeout, ResponseFilter responseFilter, DeliverOrder deliverOrder, boolean anycast)booleanSingleSiteRequest. onNewView(Set<Address> members)voidJGroupsTransport. sendToMany(Collection<Address> targets, ReplicableCommand command, DeliverOrder deliverOrder)Constructors in org.infinispan.remoting.transport.jgroups with parameters of type Address Constructor Description SuspectException(String msg, Address suspect)SuspectException(String msg, Address suspect, Throwable cause) -
Uses of Address in org.infinispan.scattered
Methods in org.infinispan.scattered that return types with arguments of type Address Modifier and Type Method Description List<Address>BiasManager.Revocation. biased()List<Address>BiasManager. getRemoteBias(Object key)Methods in org.infinispan.scattered with parameters of type Address Modifier and Type Method Description voidBiasManager. renewRemoteBias(Object key, Address origin)Notify the component that the node is reading the biased entry and the bias should not be revoked unless necessary.voidScatteredStateProvider. startKeysTransfer(org.infinispan.commons.util.IntSet segments, Address origin)Start transferring keys and remote metadata for the given segments to the origin.BiasManager.RevocationBiasManager. startRevokingRemoteBias(Object key, Address newBiased)Check if there are any nodes that have local bias, and starting replacing them with the provided address. -
Uses of Address in org.infinispan.scattered.impl
Fields in org.infinispan.scattered.impl with type parameters of type Address Modifier and Type Field Description protected Collection<Address>ScatteredStateConsumerImpl. backupAddressprotected ConcurrentMap<Address,BlockingQueue<ScatteredStateConsumerImpl.KeyAndVersion>>ScatteredStateConsumerImpl. invalidationsprotected Collection<Address>ScatteredStateConsumerImpl. nonBackupAddressesprotected ConcurrentMap<Address,BlockingQueue<Object>>ScatteredStateConsumerImpl. retrievedEntriesMethods in org.infinispan.scattered.impl that return types with arguments of type Address Modifier and Type Method Description List<Address>BiasManagerImpl. getRemoteBias(Object key)Methods in org.infinispan.scattered.impl with parameters of type Address Modifier and Type Method Description voidBiasManagerImpl. renewRemoteBias(Object key, Address origin)voidScatteredStateProviderImpl. startKeysTransfer(org.infinispan.commons.util.IntSet segments, Address origin)BiasManager.RevocationBiasManagerImpl. startRevokingRemoteBias(Object key, Address newBiased) -
Uses of Address in org.infinispan.security.actions
Methods in org.infinispan.security.actions that return Address Modifier and Type Method Description AddressGetCacheManagerAddress. run()AddressGetCacheManagerCoordinatorAddress. run() -
Uses of Address in org.infinispan.statetransfer
Methods in org.infinispan.statetransfer that return Address Modifier and Type Method Description AddressOutboundTransferTask. getDestination()AddressInboundTransferTask. getSource()Methods in org.infinispan.statetransfer that return types with arguments of type Address Modifier and Type Method Description Map<Address,Response>StateTransferManager. forwardCommandIfNeeded(TopologyAffectedCommand command, Set<Object> affectedKeys, Address origin)If there is an state transfer happening at the moment, this method forwards the supplied command to the nodes that are new owners of the data, in order to assure consistency.Map<Address,Response>StateTransferManagerImpl. forwardCommandIfNeeded(TopologyAffectedCommand command, Set<Object> affectedKeys, Address origin)Methods in org.infinispan.statetransfer with parameters of type Address Modifier and Type Method Description CompletionStage<?>StateConsumer. applyState(Address sender, int topologyId, boolean pushTransfer, Collection<StateChunk> stateChunks)CompletionStage<?>StateConsumerImpl. applyState(Address sender, int topologyId, boolean pushTransfer, Collection<StateChunk> stateChunks)voidStateProvider. cancelOutboundTransfer(Address destination, int topologyId, org.infinispan.commons.util.IntSet segments)Cancel sending of cache entries that belong to the given set of segments.voidStateProviderImpl. cancelOutboundTransfer(Address destination, int topologyId, org.infinispan.commons.util.IntSet segments)Map<Address,Response>StateTransferManager. forwardCommandIfNeeded(TopologyAffectedCommand command, Set<Object> affectedKeys, Address origin)If there is an state transfer happening at the moment, this method forwards the supplied command to the nodes that are new owners of the data, in order to assure consistency.Map<Address,Response>StateTransferManagerImpl. forwardCommandIfNeeded(TopologyAffectedCommand command, Set<Object> affectedKeys, Address origin)CompletionStage<List<TransactionInfo>>StateProvider. getTransactionsForSegments(Address destination, int topologyId, org.infinispan.commons.util.IntSet segments)Gets the list of transactions that affect keys from the given segments.CompletionStage<List<TransactionInfo>>StateProviderImpl. getTransactionsForSegments(Address destination, int requestTopologyId, org.infinispan.commons.util.IntSet segments)voidStateProvider. startOutboundTransfer(Address destination, int topologyId, org.infinispan.commons.util.IntSet segments, boolean applyState)Start to send cache entries that belong to the given set of segments.voidStateProviderImpl. startOutboundTransfer(Address destination, int requestTopologyId, org.infinispan.commons.util.IntSet segments, boolean applyState)Constructors in org.infinispan.statetransfer with parameters of type Address Constructor Description InboundTransferTask(org.infinispan.commons.util.IntSet segments, Address source, int topologyId, RpcManager rpcManager, CommandsFactory commandsFactory, long timeout, String cacheName, boolean applyState)OutboundTransferTask(Address destination, org.infinispan.commons.util.IntSet segments, int segmentCount, int chunkSize, int topologyId, KeyPartitioner keyPartitioner, Consumer<Collection<StateChunk>> onChunkReplicated, RpcManager rpcManager, CommandsFactory commandsFactory, long timeout, String cacheName, boolean applyState, boolean pushTransfer) -
Uses of Address in org.infinispan.stream.impl
Fields in org.infinispan.stream.impl declared as Address Modifier and Type Field Description protected AddressAbstractCacheStream. localAddressConstructors in org.infinispan.stream.impl with parameters of type Address Constructor Description AbstractCacheStream(Address localAddress, boolean parallel, DistributionManager dm, InvocationContext ctx, Supplier<CacheStream<Original>> supplier, boolean includeLoader, int distributedBatchSize, Executor executor, ComponentRegistry registry, Function<? super Original,?> toKeyFunction)DistributedCacheStream(Address localAddress, boolean parallel, DistributionManager dm, InvocationContext ctx, Supplier<CacheStream<R>> supplier, boolean includeLoader, int distributedBatchSize, Executor executor, ComponentRegistry registry, Function<? super Original,?> toKeyFunction)Standard constructor requiring all pertinent information to properly utilize a distributed cache stream -
Uses of Address in org.infinispan.topology
Classes in org.infinispan.topology that implement Address Modifier and Type Class Description classPersistentUUIDPersistentUUID.Methods in org.infinispan.topology that return Address Modifier and Type Method Description AddressPersistentUUIDManager. getAddress(PersistentUUID persistentUUID)Retrieves theAddressof a node given itsPersistentUUIDAddressPersistentUUIDManagerImpl. getAddress(PersistentUUID persistentUUID)Methods in org.infinispan.topology that return types with arguments of type Address Modifier and Type Method Description UnaryOperator<Address>PersistentUUIDManager. addressToPersistentUUID()Provides a remapping operator which translates addresses to persistentuuidsUnaryOperator<Address>PersistentUUIDManagerImpl. addressToPersistentUUID()List<Address>CacheTopology. getActualMembers()Map<Address,Float>ClusterCacheStatus. getCapacityFactors()List<Address>ClusterCacheStatus. getExpectedMembers()List<Address>CacheTopology. getMembers()UnaryOperator<Address>PersistentUUIDManager. persistentUUIDToAddress()Provides a remapping operator which translates persistentuuids to addressesUnaryOperator<Address>PersistentUUIDManagerImpl. persistentUUIDToAddress()Methods in org.infinispan.topology with parameters of type Address Modifier and Type Method Description voidPersistentUUIDManager. addPersistentAddressMapping(Address address, PersistentUUID persistentUUID)Adds a mapping between anAddressand aPersistentUUIDvoidPersistentUUIDManagerImpl. addPersistentAddressMapping(Address address, PersistentUUID persistentUUID)intPersistentUUID. compareTo(Address o)voidClusterCacheStatus. confirmRebalancePhase(Address member, int receivedTopologyId)CacheStatusResponseClusterCacheStatus. doJoin(Address joiner, CacheJoinInfo joinInfo)CompletionStage<Void>ClusterCacheStatus. doLeave(Address leaver)PersistentUUIDPersistentUUIDManager. getPersistentUuid(Address address)Retrieves thePersistentUUIDof a node given itsAddressPersistentUUIDPersistentUUIDManagerImpl. getPersistentUuid(Address address)CompletionStage<CacheStatusResponse>ClusterTopologyManager. handleJoin(String cacheName, Address joiner, CacheJoinInfo joinInfo, int viewId)Signals that a new member is joining the cache.CompletionStage<CacheStatusResponse>ClusterTopologyManagerImpl. handleJoin(String cacheName, Address joiner, CacheJoinInfo joinInfo, int joinerViewId)CompletionStage<Void>ClusterTopologyManager. handleLeave(String cacheName, Address leaver, int viewId)Signals that a member is leaving the cache.CompletionStage<Void>ClusterTopologyManagerImpl. handleLeave(String cacheName, Address leaver, int viewId)CompletionStage<Void>LocalTopologyManager. handleRebalance(String cacheName, CacheTopology cacheTopology, int viewId, Address sender)Performs the state transfer.CompletionStage<Void>LocalTopologyManagerImpl. handleRebalance(String cacheName, CacheTopology cacheTopology, int viewId, Address sender)CompletionStage<Void>ClusterTopologyManager. handleRebalancePhaseConfirm(String cacheName, Address node, int topologyId, Throwable throwable, int viewId)Marks the rebalance as complete on the sender.CompletionStage<Void>ClusterTopologyManagerImpl. handleRebalancePhaseConfirm(String cacheName, Address node, int topologyId, Throwable throwable, int viewId)CompletionStage<Void>LocalTopologyManager. handleStableTopologyUpdate(String cacheName, CacheTopology cacheTopology, Address sender, int viewId)Update the stable cache topology.CompletionStage<Void>LocalTopologyManagerImpl. handleStableTopologyUpdate(String cacheName, CacheTopology newStableTopology, Address sender, int viewId)CompletionStage<Void>LocalTopologyManager. handleTopologyUpdate(String cacheName, CacheTopology cacheTopology, AvailabilityMode availabilityMode, int viewId, Address sender)Updates the current and/or pending consistent hash, without transferring any state.CompletionStage<Void>LocalTopologyManagerImpl. handleTopologyUpdate(String cacheName, CacheTopology cacheTopology, AvailabilityMode availabilityMode, int viewId, Address sender)voidPersistentUUIDManager. removePersistentAddressMapping(Address address)Removes any address mapping for the specifiedAddressvoidPersistentUUIDManagerImpl. removePersistentAddressMapping(Address address)Method parameters in org.infinispan.topology with type arguments of type Address Modifier and Type Method Description ConsistentHashClusterCacheStatus. calculateConflictHash(ConsistentHash preferredHash, Set<ConsistentHash> distinctHashes, List<Address> actualMembers)static booleanClusterTopologyManagerImpl. distLostDataCheck(ConsistentHash stableCH, List<Address> newMembers)voidClusterCacheStatus. doMergePartitions(Map<Address,CacheStatusResponse> statusResponses)List<PersistentUUID>PersistentUUIDManager. mapAddresses(List<Address> addresses)Returns a list ofPersistentUUIDs for the suppliedAddressesList<PersistentUUID>PersistentUUIDManagerImpl. mapAddresses(List<Address> addresses)voidClusterCacheStatus. queueConflictResolution(CacheTopology conflictTopology, Set<Address> preferredNodes)voidClusterCacheStatus. queueRebalance(List<Address> newMembers)booleanClusterCacheStatus. restartConflictResolution(List<Address> members)static booleanClusterTopologyManagerImpl. scatteredLostDataCheck(ConsistentHash stableCH, List<Address> newMembers)voidClusterCacheStatus. updateAvailabilityMode(List<Address> actualMembers, AvailabilityMode newAvailabilityMode, boolean cancelRebalance)voidClusterCacheStatus. updateCurrentTopology(List<Address> newMembers)Constructor parameters in org.infinispan.topology with type arguments of type Address Constructor Description CacheTopology(int topologyId, int rebalanceId, ConsistentHash currentCH, ConsistentHash pendingCH, ConsistentHash unionCH, CacheTopology.Phase phase, List<Address> actualMembers, List<PersistentUUID> persistentUUIDs)CacheTopology(int topologyId, int rebalanceId, ConsistentHash currentCH, ConsistentHash pendingCH, CacheTopology.Phase phase, List<Address> actualMembers, List<PersistentUUID> persistentUUIDs) -
Uses of Address in org.infinispan.transaction.impl
Methods in org.infinispan.transaction.impl that return types with arguments of type Address Modifier and Type Method Description Collection<Address>LocalTransaction. getCommitNodes(Collection<Address> recipients, CacheTopology cacheTopology)Calculates the list of nodes to which a commit/rollback needs to be sent based on the nodes to which prepare was sent.Collection<Address>LocalTransaction. getRemoteLocksAcquired()Method parameters in org.infinispan.transaction.impl with type arguments of type Address Modifier and Type Method Description voidTransactionTable. cleanupLeaverTransactions(List<Address> members)Collection<Address>LocalTransaction. getCommitNodes(Collection<Address> recipients, CacheTopology cacheTopology)Calculates the list of nodes to which a commit/rollback needs to be sent based on the nodes to which prepare was sent.booleanClusteredTransactionOriginatorChecker. isOriginatorMissing(GlobalTransaction gtx, Collection<Address> liveMembers)booleanTransactionOriginatorChecker. isOriginatorMissing(GlobalTransaction gtx, Collection<Address> liveMembers)voidLocalTransaction. locksAcquired(Collection<Address> nodes) -
Uses of Address in org.infinispan.transaction.xa
Methods in org.infinispan.transaction.xa that return Address Modifier and Type Method Description AddressGlobalTransaction. getAddress()Methods in org.infinispan.transaction.xa with parameters of type Address Modifier and Type Method Description GlobalTransactionTransactionFactory. newGlobalTransaction(Address addr, boolean remote)abstract GlobalTransactionTransactionFactory.TxFactoryEnum. newGlobalTransaction(Address addr, boolean remote, VersionGenerator clusterIdGenerator, boolean clustered)voidGlobalTransaction. setAddress(Address address)Constructors in org.infinispan.transaction.xa with parameters of type Address Constructor Description 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 Modifier and Type Method Description Set<Address>InDoubtTxInfo. getOwners()Methods in org.infinispan.transaction.xa.recovery with parameters of type Address Modifier and Type Method Description voidInDoubtTxInfo. addOwner(Address owner)Addsowneras a node where this transaction information is maintained.StringRecoveryManager. forceTransactionCompletionFromCluster(org.infinispan.commons.tx.XidImpl xid, Address where, boolean commit)This method invokesRecoveryManager.forceTransactionCompletion(XidImpl, boolean)on the specified node.StringRecoveryManagerImpl. forceTransactionCompletionFromCluster(org.infinispan.commons.tx.XidImpl xid, Address where, boolean commit)Method parameters in org.infinispan.transaction.xa.recovery with type arguments of type Address Modifier and Type Method Description voidRecoveryAwareTransactionTable. cleanupLeaverTransactions(List<Address> members)First moves the prepared transactions originated on the leavers into the recovery cache and then cleans up the transactions that are not yet prepared.voidRecoveryAwareRemoteTransaction. computeOrphan(Collection<Address> currentMembers)Check's if this transaction's originator is no longer part of the cluster (orphan transaction) and updatesRecoveryAwareRemoteTransaction.isOrphan().CompletionStage<Void>RecoveryManager. removeRecoveryInformation(Collection<Address> where, org.infinispan.commons.tx.XidImpl xid, GlobalTransaction gtx, boolean fromCluster)Removes from the specified nodes (or all nodes if the value of 'where' is null) the recovery information associated with these Xids.CompletionStage<Void>RecoveryManagerImpl. removeRecoveryInformation(Collection<Address> lockOwners, org.infinispan.commons.tx.XidImpl xid, GlobalTransaction gtx, boolean fromCluster)CompletionStage<Void>RecoveryManager. removeRecoveryInformationFromCluster(Collection<Address> where, long internalId)Same asRecoveryManager.removeRecoveryInformation(Collection, XidImpl, GlobalTransaction, boolean)but the transaction is identified by its internal id, and not by its xid.CompletionStage<Void>RecoveryManagerImpl. removeRecoveryInformationFromCluster(Collection<Address> where, long internalId) -
Uses of Address in org.infinispan.util.concurrent
Methods in org.infinispan.util.concurrent with parameters of type Address Modifier and Type Method Description voidCommandAckCollector. backupAck(long id, Address from, int topologyId)Acknowledges a write operation completion in the backup owner.BiasedCollectorCommandAckCollector.MultiTargetCollector. collectorFor(Address target)voidCommandAckCollector. multiKeyBackupAck(long id, Address from, int segment, int topologyId)Acknowledges aPutMapCommandcompletion in the backup owner.Method parameters in org.infinispan.util.concurrent with type arguments of type Address Modifier and Type Method Description <T> Collector<T>CommandAckCollector. create(long id, Collection<Address> backupOwners, int topologyId)Creates a collector for a single key write operation.<T> Collector<T>CommandAckCollector. createSegmentBasedCollector(long id, Map<Address,Collection<Integer>> backups, int topologyId)Creates a collector forPutMapCommand.voidCommandAckCollector. onMembersChange(Collection<Address> members)Notifies a change in member list. -
Uses of Address in org.infinispan.util.logging
Method parameters in org.infinispan.util.logging with type arguments of type Address Modifier and Type Method Description voidLog_$logger. expectedJustOneResponse(Map<Address,Response> lr)voidLog. expectedJustOneResponse(Map<Address,Response> lr)CacheJoinExceptionLog_$logger. extraneousMembersJoinRestoredCache(List<Address> extraneousMembers, String cacheName)CacheJoinExceptionLog. extraneousMembersJoinRestoredCache(List<Address> extraneousMembers, String cacheName)voidLog_$logger. ignoringCacheTopology(Collection<Address> sender, CacheTopology topology)voidLog. ignoringCacheTopology(Collection<Address> sender, CacheTopology topology)voidLog_$logger. localAndPhysicalAddress(String cluster, Address address, List<Address> physicalAddresses)voidLog. localAndPhysicalAddress(String cluster, Address address, List<Address> physicalAddresses) -
Uses of Address in org.infinispan.util.logging.events
Methods in org.infinispan.util.logging.events with parameters of type Address Modifier and Type Method Description StringMessages_$bundle. enteringDegradedModeGracefulLeaver(Address leaver)StringMessages. enteringDegradedModeGracefulLeaver(Address leaver)StringMessages_$bundle. lostDataBecauseOfGracefulLeaver(Address leaver)StringMessages. lostDataBecauseOfGracefulLeaver(Address leaver)StringMessages_$bundle. nodeJoined(Address joiner)StringMessages. nodeJoined(Address joiner)StringMessages_$bundle. nodeLeft(Address leaver)StringMessages. nodeLeft(Address leaver)default EventLoggerEventLogger. scope(Address scope)Sets a node address as the scope of this event log -
Uses of Address in org.infinispan.util.logging.events.impl
Methods in org.infinispan.util.logging.events.impl with parameters of type Address Modifier and Type Method Description EventLoggerDecoratedEventLogger. scope(Address scope) -
Uses of Address in org.infinispan.xsite
Methods in org.infinispan.xsite that return types with arguments of type Address Modifier and Type Method Description Map<Address,String>XSiteAdminOperations. nodeStatus(String site)Obtain the status of the nodes from a site -
Uses of Address in org.infinispan.xsite.irac
Methods in org.infinispan.xsite.irac with parameters of type Address Modifier and Type Method Description voidDefaultIracManager. requestState(Address origin, org.infinispan.commons.util.IntSet segments)voidIracManager. requestState(Address origin, org.infinispan.commons.util.IntSet segments)Requests the state stored in this instance for the givensegments.voidNoOpIracManager. requestState(Address origin, org.infinispan.commons.util.IntSet segments)voidDefaultIracManager. sendStateIfNeeded(Address origin, org.infinispan.commons.util.IntSet segments, Object key, Object lockOwner) -
Uses of Address in org.infinispan.xsite.statetransfer
Methods in org.infinispan.xsite.statetransfer with parameters of type Address Modifier and Type Method Description booleanXSiteStateTransferCollector. confirmStateTransfer(Address node, boolean statusOk)voidNoOpXSiteStateTransferManager. notifyStatePushFinished(String siteName, Address node, boolean statusOk)voidXSiteStateTransferManager. notifyStatePushFinished(String siteName, Address node, boolean statusOk)It receives the notifications from local site when some node finishes pushing the state to the remote site.voidXSiteStateTransferManagerImpl. notifyStatePushFinished(String siteName, Address node, boolean statusOk)voidNoOpXSiteStateProvider. startStateTransfer(String siteName, Address requestor, int minTopologyId)voidXSiteStateProvider. startStateTransfer(String siteName, Address requestor, int minTopologyId)It notifies this node to start sending state to the remote site.voidXSiteStateProviderImpl. startStateTransfer(String siteName, Address origin, int minTopologyId)Method parameters in org.infinispan.xsite.statetransfer with type arguments of type Address Modifier and Type Method Description Collection<String>NoOpXSiteStateProvider. getSitesMissingCoordinator(Collection<Address> currentMembers)Collection<String>XSiteStateProvider. getSitesMissingCoordinator(Collection<Address> currentMembers)Collection<String>XSiteStateProviderImpl. getSitesMissingCoordinator(Collection<Address> currentMembers)booleanXSiteStateTransferCollector. updateMembers(Collection<Address> members)Constructor parameters in org.infinispan.xsite.statetransfer with type arguments of type Address Constructor Description XSiteStateTransferCollector(Collection<Address> confirmationPending) -
Uses of Address in org.infinispan.xsite.status
Methods in org.infinispan.xsite.status with parameters of type Address Modifier and Type Method Description voidCacheSiteStatusBuilder. addMember(Address address, boolean online)Adds a member with an online/offline connection to the server based on theonlineparameter.Method parameters in org.infinispan.xsite.status with type arguments of type Address Modifier and Type Method Description protected SiteStatusCacheSiteStatusBuilder. createMixedStatus(List<Address> onlineElements, List<Address> offlineElements)Constructor parameters in org.infinispan.xsite.status with type arguments of type Address Constructor Description CacheMixedSiteStatus(List<Address> onlineMembers, List<Address> offlineMembers)
-