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

org.infinispan.statetransfer.StateTransferManager Maven / Gradle / Ivy

There is a newer version: 15.1.0.Dev04
Show newest version
package org.infinispan.statetransfer;

import java.util.Collections;
import java.util.Map;
import java.util.Set;

import org.infinispan.commands.TopologyAffectedCommand;
import org.infinispan.configuration.cache.StateTransferConfiguration;
import org.infinispan.factories.scopes.Scope;
import org.infinispan.factories.scopes.Scopes;
import org.infinispan.remoting.responses.Response;
import org.infinispan.remoting.transport.Address;

/**
 * A component that manages the state transfer when the topology of the cluster changes.
 *
 * @author Dan Berindei <[email protected]>
 * @author Mircea Markus
 * @author [email protected]
 * @since 5.1
 */
@Scope(Scopes.NAMED_CACHE)
public interface StateTransferManager {

   //todo [anistor] this is inaccurate. this node does not hold state yet in current implementation
   boolean isJoinComplete();

   /**
    * Checks if an inbound state transfer is in progress.
    */
   boolean isStateTransferInProgress();

   /**
    * Returns the number of requested segments to be transferred.
    */
   long getInflightSegmentTransferCount();

   /**
    * Returns the number of transactional segments requested which are still in-flight.
    */
   long getInflightTransactionalSegmentCount();

   void start() throws Exception;

   /**
    * Wait for the local cache to receive initial state from the other members.
    *
    * 

Does nothing if {@link StateTransferConfiguration#awaitInitialTransfer()} is disabled.

*/ void waitForInitialStateTransferToComplete(); void stop(); /** * 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. * * @deprecated Since 14.0. To be removed without replacement. */ @Deprecated(forRemoval=true, since = "14.0") default Map forwardCommandIfNeeded(TopologyAffectedCommand command, Set affectedKeys, Address origin) { return Collections.emptyMap(); } String getRebalancingStatus() throws Exception; StateConsumer getStateConsumer(); StateProvider getStateProvider(); }