All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.infinispan.remoting.transport.Transport Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.infinispan.remoting.transport;

import org.infinispan.commands.ReplicableCommand;
import org.infinispan.factories.annotations.Start;
import org.infinispan.factories.annotations.Stop;
import org.infinispan.factories.scopes.Scope;
import org.infinispan.factories.scopes.Scopes;
import org.infinispan.lifecycle.Lifecycle;
import org.infinispan.remoting.responses.Response;
import org.infinispan.remoting.rpc.ResponseFilter;
import org.infinispan.remoting.rpc.ResponseMode;
import org.infinispan.util.logging.Log;
import org.infinispan.xsite.XSiteBackup;
import org.infinispan.xsite.XSiteReplicateCommand;

import java.util.Collection;
import java.util.List;
import java.util.Map;

/**
 * An interface that provides a communication link with remote caches.  Also allows remote caches to invoke commands on
 * this cache instance.
 *
 * @author Manik Surtani
 * @author Galder Zamarreño
 * @since 4.0
 */
@Scope(Scopes.GLOBAL)
public interface Transport extends Lifecycle {
   // TODO discovery should be abstracted away into a separate set of interfaces such that it is not tightly coupled to the transport

   /**
    * Invokes an RPC call on other caches in the cluster.
    *
    *
    * @param recipients       a list of Addresses to invoke the call on.  If this is null, the call is broadcast to the
    *                         entire cluster.
    * @param rpcCommand       the cache command to invoke
    * @param mode             the response mode to use
    * @param timeout          a timeout after which to throw a replication exception.
    * @param usePriorityQueue if true, a priority queue is used to deliver messages.  May not be supported by all
    *                         implementations.
    * @param responseFilter   a response filter with which to filter out failed/unwanted/invalid responses.
    * @param totalOrder       the command will be send with total order properties
    * @param anycast          used when {@param totalOrder} is {@code true}, it means that it must use TOA instead of TOB.
    * @return a map of responses from each member contacted.
    * @throws Exception in the event of problems.
    */
   Map invokeRemotely(Collection
recipients, ReplicableCommand rpcCommand, ResponseMode mode, long timeout, boolean usePriorityQueue, ResponseFilter responseFilter, boolean totalOrder, boolean anycast) throws Exception; BackupResponse backupRemotely(Collection backups, XSiteReplicateCommand rpcCommand) throws Exception; /** * @return true if the current Channel is the coordinator of the cluster. */ boolean isCoordinator(); /** * @return the Address of the current coordinator. */ Address getCoordinator(); /** * Retrieves the current cache instance's network address * * @return an Address */ Address getAddress(); /** * 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 as {@link #getAddress()}. * * @return an List of Address */ List
getPhysicalAddresses(); /** * Returns a list of members in the current cluster view. * * @return a list of members. Typically, this would be defensively copied. */ List
getMembers(); /** * Tests whether the transport supports true multicast * * @return true if the transport supports true multicast */ boolean isMulticastCapable(); @Override @Start(priority = 10) void start(); @Override @Stop void stop(); /** * @throws org.infinispan.commons.CacheException if the transport has been stopped. */ int getViewId(); Log getLog(); /** * check if the transport has configured with total order deliver properties (has the sequencer in JGroups * protocol stack. */ void checkTotalOrderSupported(); }




© 2015 - 2025 Weber Informatics LLC | Privacy Policy