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

org.infinispan.distribution.DistributionManager Maven / Gradle / Ivy

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

import org.infinispan.distribution.ch.ConsistentHash;
import org.infinispan.factories.scopes.Scope;
import org.infinispan.factories.scopes.Scopes;
import org.infinispan.topology.CacheTopology;

/**
 * A component that manages the distribution of elements across a cache cluster
 *
 * @author Manik Surtani
 * @author [email protected]
 * @author Vladimir Blagojevic
 * @author [email protected]
 * @since 4.0
 */
@Scope(Scopes.NAMED_CACHE)
public interface DistributionManager {

   /**
    * @return the consistent hash used for reading.
    * @deprecated Since 11.0, to be removed in 14.0. Please use {@link #getCacheTopology()} instead.
    */
   @Deprecated(forRemoval=true, since = "11.0")
   ConsistentHash getReadConsistentHash();

   /**
    * @return the consistent hash used for writing.
    * @deprecated Since 11.0, to be removed in 14.0. Please use {@link #getCacheTopology()} instead.
    */
   @Deprecated(forRemoval=true, since = "11.0")
   ConsistentHash getWriteConsistentHash();

   /**
    * Tests whether a given key is affected by a rehash that may be in progress.  If no rehash is in progress, this method
    * returns false.  Helps determine whether additional steps are necessary in handling an operation with a given key.
    *
    * @param key key to test
    * @return whether a key is affected by a rehash
    */
   boolean isAffectedByRehash(Object key);

   /**
    * Tests whether a rehash is in progress
    * @return true if a rehash is in progress, false otherwise
    */
   boolean isRehashInProgress();

   /**
    * Tests whether the current instance has completed joining the cluster
    * @return true if join is in progress, false otherwise
    */
   boolean isJoinComplete();

   /**
    * @return the current cache topology, which includes the read and write consistent hashes.
    */
   LocalizedCacheTopology getCacheTopology();

   /**
    * @deprecated Internal only.
    */
   @Deprecated(forRemoval=true, since = "11.0")
   void setCacheTopology(CacheTopology cacheTopology);

   LocalizedCacheTopology createLocalizedCacheTopology(CacheTopology cacheTopology);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy