Class AbstractDelegatingTransport
- Since:
- 6.0
- Author:
- Pedro Ruivo
-
Field Summary
-
Constructor Summary
-
Method Summary
Modifier and TypeMethodDescriptionbackupRemotely
(Collection<org.infinispan.xsite.XSiteBackup> backups, XSiteRequest<?> rpcCommand) <O> XSiteResponse<O>
backupRemotely
(org.infinispan.xsite.XSiteBackup backup, XSiteRequest<O> rpcCommand) Sends a cross-site request to a remote site.void
Checks if thisTransport
is able to perform cross-site requests.Retrieves the current cache instance's network addressorg.infinispan.util.logging.Log
getLog()
Returns a list of members in the current cluster view.Returns physical addresses of members in the current cluster view.Retrieves the current cache instance's physical network addresses.Get the view of interconnected sites.int
<T> CompletionStage<T>
invokeCommand
(Collection<Address> targets, ReplicableCommand command, ResponseCollector<T> collector, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder, long timeout, TimeUnit unit) Invoke a command on a collection of node and pass the responses to aResponseCollector
.<T> CompletionStage<T>
invokeCommand
(Address target, ReplicableCommand command, ResponseCollector<T> collector, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder, long timeout, TimeUnit unit) Invoke a command on a single node and pass the response to aResponseCollector
.<T> CompletionStage<T>
invokeCommandOnAll
(ReplicableCommand command, ResponseCollector<T> collector, org.infinispan.remoting.inboundhandler.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>
invokeCommands
(Collection<Address> targets, Function<Address, ReplicableCommand> commandGenerator, ResponseCollector<T> collector, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder, long timeout, TimeUnit timeUnit) Invoke different commands on a collection of nodes and pass the responses to aResponseCollector
.<T> CompletionStage<T>
invokeCommandStaggered
(Collection<Address> targets, ReplicableCommand command, ResponseCollector<T> collector, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder, long timeout, TimeUnit unit) Invoke a command on a collection of nodes and pass the responses to aResponseCollector
.invokeRemotely
(Collection<Address> recipients, ReplicableCommand rpcCommand, ResponseMode mode, long timeout, ResponseFilter responseFilter, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder, boolean anycast) Deprecated, for removal: This API element is subject to removal in a future version.invokeRemotely
(Map<Address, ReplicableCommand> rpcCommands, ResponseMode mode, long timeout, boolean usePriorityQueue, ResponseFilter responseFilter, boolean totalOrder, boolean anycast) Deprecated, for removal: This API element is subject to removal in a future version.invokeRemotely
(Map<Address, ReplicableCommand> rpcCommands, ResponseMode mode, long timeout, ResponseFilter responseFilter, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder, boolean anycast) Deprecated, for removal: This API element is subject to removal in a future version.invokeRemotelyAsync
(Collection<Address> recipients, ReplicableCommand rpcCommand, ResponseMode mode, long timeout, ResponseFilter responseFilter, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder, boolean anycast) boolean
boolean
Tests whether the transport supports true multicastboolean
org.infinispan.remoting.transport.raft.RaftManager
void
sendTo
(Address destination, ReplicableCommand rpcCommand, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder) Asynchronously sends theReplicableCommand
to the destination using the specifiedDeliverOrder
.void
sendToAll
(ReplicableCommand rpcCommand, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder) Asynchronously sends theReplicableCommand
to the entire cluster.void
sendToMany
(Collection<Address> destinations, ReplicableCommand rpcCommand, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder) Asynchronously sends theReplicableCommand
to the set of destination using the specifiedDeliverOrder
.void
start()
Invoked on component startvoid
stop()
Invoked on component stopvoid
waitForView
(int viewId) Deprecated, for removal: This API element is subject to removal in a future version.withView
(int expectedViewId) Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
Methods inherited from interface org.infinispan.remoting.transport.Transport
checkTotalOrderSupported, invokeCommandOnAll, invokeCommands, isPrimaryRelayNode, localNodeName
-
Field Details
-
actual
-
-
Constructor Details
-
AbstractDelegatingTransport
-
-
Method Details
-
invokeRemotely
@Deprecated(forRemoval=true) public Map<Address,Response> invokeRemotely(Collection<Address> recipients, ReplicableCommand rpcCommand, ResponseMode mode, long timeout, ResponseFilter responseFilter, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder, boolean anycast) throws Exception Deprecated, for removal: This API element is subject to removal in a future version.Description copied from interface:Transport
Invokes an RPC call on other caches in the cluster.- Specified by:
invokeRemotely
in interfaceTransport
- Parameters:
recipients
- a list of Addresses to invoke the call on. If this is null, the call is broadcast to the entire cluster.rpcCommand
- the cache command to invokemode
- the response mode to usetimeout
- a timeout after which to throw a replication exception. implementations.responseFilter
- a response filter with which to filter out failed/unwanted/invalid responses.deliverOrder
- theDeliverOrder
.anycast
- used when istrue
, it means that it must use TOA instead of TOB.- Returns:
- a map of responses from each member contacted.
- Throws:
Exception
- in the event of problems.
-
invokeRemotely
@Deprecated(forRemoval=true) public Map<Address,Response> invokeRemotely(Map<Address, ReplicableCommand> rpcCommands, ResponseMode mode, long timeout, boolean usePriorityQueue, ResponseFilter responseFilter, boolean totalOrder, boolean anycast) throws ExceptionDeprecated, for removal: This API element is subject to removal in a future version.- Specified by:
invokeRemotely
in interfaceTransport
- Throws:
Exception
-
invokeRemotely
@Deprecated(forRemoval=true) public Map<Address,Response> invokeRemotely(Map<Address, ReplicableCommand> rpcCommands, ResponseMode mode, long timeout, ResponseFilter responseFilter, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder, boolean anycast) throws ExceptionDeprecated, for removal: This API element is subject to removal in a future version.- Specified by:
invokeRemotely
in interfaceTransport
- Throws:
Exception
-
invokeRemotelyAsync
public CompletableFuture<Map<Address,Response>> invokeRemotelyAsync(Collection<Address> recipients, ReplicableCommand rpcCommand, ResponseMode mode, long timeout, ResponseFilter responseFilter, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder, boolean anycast) throws Exception - Specified by:
invokeRemotelyAsync
in interfaceTransport
- Throws:
Exception
-
sendTo
public void sendTo(Address destination, ReplicableCommand rpcCommand, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder) throws Exception Description copied from interface:Transport
Asynchronously sends theReplicableCommand
to the destination using the specifiedDeliverOrder
.- Specified by:
sendTo
in interfaceTransport
- Parameters:
destination
- the destination'sAddress
.rpcCommand
- theReplicableCommand
to send.deliverOrder
- theDeliverOrder
to use.- Throws:
Exception
- if there was problem sending the request.
-
sendToMany
public void sendToMany(Collection<Address> destinations, ReplicableCommand rpcCommand, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder) throws Exception Description copied from interface:Transport
Asynchronously sends theReplicableCommand
to the set of destination using the specifiedDeliverOrder
.- Specified by:
sendToMany
in interfaceTransport
- Parameters:
destinations
- the collection of destination'sAddress
. Ifnull
, it sends to all the members in the cluster.rpcCommand
- theReplicableCommand
to send.deliverOrder
- theDeliverOrder
to use.- Throws:
Exception
- if there was problem sending the request.
-
sendToAll
public void sendToAll(ReplicableCommand rpcCommand, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder) throws Exception Description copied from interface:Transport
Asynchronously sends theReplicableCommand
to the entire cluster. -
backupRemotely
public BackupResponse backupRemotely(Collection<org.infinispan.xsite.XSiteBackup> backups, XSiteRequest<?> rpcCommand) throws Exception - Specified by:
backupRemotely
in interfaceTransport
- Throws:
Exception
-
backupRemotely
public <O> XSiteResponse<O> backupRemotely(org.infinispan.xsite.XSiteBackup backup, XSiteRequest<O> rpcCommand) Description copied from interface:Transport
Sends a cross-site request to a remote site.Currently, no reply values are supported. Or the request completes successfully or it throws an
Exception
.If
XSiteBackup.isSync()
returnsfalse
, theXSiteResponse
is only completed when the an ACK from the remote site is received. The invoker needs to make sure not to wait for theXSiteResponse
.- Specified by:
backupRemotely
in interfaceTransport
- Parameters:
backup
- The remote site.rpcCommand
- The command to send.- Returns:
- A
XSiteResponse
that is completed when the request is completed.
-
isCoordinator
public boolean isCoordinator()- Specified by:
isCoordinator
in interfaceTransport
- Returns:
- true if the current Channel is the coordinator of the cluster.
-
getCoordinator
- Specified by:
getCoordinator
in interfaceTransport
- Returns:
- the Address of the current coordinator.
-
getAddress
Description copied from interface:Transport
Retrieves the current cache instance's network address- Specified by:
getAddress
in interfaceTransport
- Returns:
- an Address
-
getPhysicalAddresses
Description copied from interface:Transport
Retrieves the current cache instance's physical network addresses. Some implementations might differentiate between logical and physical addresses in which case, this method allows clients to query the physical ones associated with the logical address. Implementations where logical and physical address are the same will simply return a single entry List that contains the same Address asTransport.getAddress()
.- Specified by:
getPhysicalAddresses
in interfaceTransport
- Returns:
- an List of Address
-
getMembers
Description copied from interface:Transport
Returns a list of members in the current cluster view.- Specified by:
getMembers
in interfaceTransport
- Returns:
- a list of members. Typically, this would be defensively copied.
-
getMembersPhysicalAddresses
Description copied from interface:Transport
Returns physical addresses of members in the current cluster view.- Specified by:
getMembersPhysicalAddresses
in interfaceTransport
- Returns:
- a list of physical addresses
-
isMulticastCapable
public boolean isMulticastCapable()Description copied from interface:Transport
Tests whether the transport supports true multicast- Specified by:
isMulticastCapable
in interfaceTransport
- Returns:
- true if the transport supports true multicast
-
checkCrossSiteAvailable
Description copied from interface:Transport
Checks if thisTransport
is able to perform cross-site requests.- Specified by:
checkCrossSiteAvailable
in interfaceTransport
- Throws:
CacheConfigurationException
- if cross-site isn't available.
-
localSiteName
- Specified by:
localSiteName
in interfaceTransport
- Returns:
- The local site name or
null
if thisTransport
cannot make cross-site requests.
-
start
public void start()Description copied from interface:Lifecycle
Invoked on component start -
stop
public void stop()Description copied from interface:Lifecycle
Invoked on component stop -
getViewId
public int getViewId() -
withView
- Specified by:
withView
in interfaceTransport
- Returns:
- A
CompletableFuture
that completes when the transport has installed the expected view.
-
waitForView
Deprecated, for removal: This API element is subject to removal in a future version.- Specified by:
waitForView
in interfaceTransport
- Throws:
InterruptedException
-
getLog
public org.infinispan.util.logging.Log getLog() -
getDelegate
-
getSitesView
Description copied from interface:Transport
Get the view of interconnected sites. If no cross site replication has been configured, this method returns null. Inspecting the site view can be useful to see if the different sites have managed to join each other, which is pre-requisite to get cross replication working.- Specified by:
getSitesView
in interfaceTransport
- Returns:
- set containing the connected sites, or null if no cross site replication has been enabled.
-
isSiteCoordinator
public boolean isSiteCoordinator()- Specified by:
isSiteCoordinator
in interfaceTransport
- Returns:
true
if this node is a cross-site replication coordinator.
-
getRelayNodesAddress
- Specified by:
getRelayNodesAddress
in interfaceTransport
- Returns:
- The current site coordinators
Address
.
-
invokeCommand
public <T> CompletionStage<T> invokeCommand(Address target, ReplicableCommand command, ResponseCollector<T> collector, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder, long timeout, TimeUnit unit) Description copied from interface:Transport
Invoke a command on a single node and pass the response to aResponseCollector
.If the target is the local node, the command is never executed and
ResponseCollector.finish()
is called directly.- Specified by:
invokeCommand
in interfaceTransport
-
invokeCommand
public <T> CompletionStage<T> invokeCommand(Collection<Address> targets, ReplicableCommand command, ResponseCollector<T> collector, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder, long timeout, TimeUnit unit) Description copied from interface:Transport
Invoke a command on a collection of node and pass the responses to aResponseCollector
.If one of the targets is the local node, it is ignored. The command is only executed on the remote nodes.
- Specified by:
invokeCommand
in interfaceTransport
-
invokeCommandOnAll
public <T> CompletionStage<T> invokeCommandOnAll(ReplicableCommand command, ResponseCollector<T> collector, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder, long timeout, TimeUnit unit) Description copied from interface:Transport
Invoke a command on all the nodes in the cluster and pass the responses to aResponseCollector
.The command is not executed locally and it is not sent across RELAY2 bridges to remote sites.
- Specified by:
invokeCommandOnAll
in interfaceTransport
-
invokeCommandStaggered
public <T> CompletionStage<T> invokeCommandStaggered(Collection<Address> targets, ReplicableCommand command, ResponseCollector<T> collector, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder, long timeout, TimeUnit unit) Description copied from interface:Transport
Invoke a command on a collection of nodes and pass the responses to aResponseCollector
.The command is only sent immediately to the first target, and there is an implementation-dependent delay before sending the command to each target. There is no delay if the target responds or leaves the cluster. The remaining targets are skipped if
ResponseCollector.addResponse(Address, Response)
returns a non-null
value.The command is only executed on the remote nodes.
- Specified by:
invokeCommandStaggered
in interfaceTransport
-
invokeCommands
public <T> CompletionStage<T> invokeCommands(Collection<Address> targets, Function<Address, ReplicableCommand> commandGenerator, ResponseCollector<T> collector, org.infinispan.remoting.inboundhandler.DeliverOrder deliverOrder, long timeout, TimeUnit timeUnit) Description copied from interface:Transport
Invoke different commands on a collection of nodes and pass the responses to aResponseCollector
.The command is only executed on the remote nodes.
- Specified by:
invokeCommands
in interfaceTransport
-
raftManager
public org.infinispan.remoting.transport.raft.RaftManager raftManager()- Specified by:
raftManager
in interfaceTransport
- Returns:
- The
RaftManager
instance,
-