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

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

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

import java.util.Collection;
import java.util.List;
import java.util.concurrent.CompletableFuture;
import java.util.concurrent.CompletionStage;

import org.infinispan.commons.util.IntSet;
import org.infinispan.conflict.impl.StateReceiver;
import org.infinispan.factories.scopes.Scope;
import org.infinispan.factories.scopes.Scopes;
import org.infinispan.notifications.cachelistener.cluster.ClusterListenerReplicateCallable;
import org.infinispan.remoting.transport.Address;
import org.infinispan.topology.CacheTopology;

/**
 * Handles outbound state transfers.
 *
 * @author [email protected]
 * @since 5.2
 */
@Scope(Scopes.NAMED_CACHE)
public interface StateProvider {

   boolean isStateTransferInProgress();

   /**
    * Receive notification of topology changes. Cancels all outbound transfers to destinations that are no longer members.
    * The other outbound transfers remain unaffected.
    *  @param cacheTopology
    * @param isRebalance
    */
   CompletableFuture onTopologyUpdate(CacheTopology cacheTopology, boolean isRebalance);

   /**
    * Gets the list of transactions that affect keys from the given segments. This is invoked in response to a
    * {@link org.infinispan.commands.statetransfer.StateTransferGetTransactionsCommand}.
    *
    * @param destination the address of the requester
    * @param topologyId required topology before we can start collecting transactions
    * @param segments only return transactions affecting these segments
    * @return a {@code CompletionStage} that completes with the list transactions and locks for the given segments
    */
   CompletionStage> getTransactionsForSegments(Address destination, int topologyId, IntSet segments);

   Collection> getClusterListenersToInstall();

   /**
    * Start to send cache entries that belong to the given set of segments. This is invoked in response to a
    * {@link org.infinispan.commands.statetransfer.StateTransferStartCommand}.
    *
    * If the applyState field is set to false, then upon delivery at the destination the cache entries are processed
    * by a {@link StateReceiver} and are not applied to the local cache.
    *  @param destination the address of the requester
    * @param topologyId
    * @param segments
    * @param applyState
    */
   void startOutboundTransfer(Address destination, int topologyId, IntSet segments, boolean applyState);

   /**
    * Cancel sending of cache entries that belong to the given set of segments. This is invoked in response to a
    * {@link org.infinispan.commands.statetransfer.StateTransferCancelCommand}.
    *
    * @param destination the address of the requester
    * @param topologyId
    * @param segments    the segments that we have to cancel transfer for
    */
   void cancelOutboundTransfer(Address destination, int topologyId, IntSet segments);

   void start();

   /**
    * Cancels all outbound state transfers.
    * This is executed when the cache is shutting down.
    */
   void stop();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy