Infinispan Distribution 5.2.6.Final-redhat-2

Uses of Interface
org.infinispan.commons.hash.Hash

Packages that use Hash
org.infinispan.client.hotrod.impl.consistenthash   
org.infinispan.commons.hash   
org.infinispan.config Cache configuration beans and parsers. 
org.infinispan.configuration.cache Classes related to eviction. 
org.infinispan.distribution.ch   
org.infinispan.distribution.group Groups allow keys with differeing hash codes to be co-located on the same node. 
org.infinispan.topology   
org.infinispan.util General utilities that are not specific to Infinispan, including string parsing helpers, reflection tools and collections and containers designed to supplement the JDK-provided containers. 
 

Uses of Hash in org.infinispan.client.hotrod.impl.consistenthash
 

Fields in org.infinispan.client.hotrod.impl.consistenthash declared as Hash
protected  Hash ConsistentHashV1.hash
           
 

Methods in org.infinispan.client.hotrod.impl.consistenthash with parameters of type Hash
 void ConsistentHashV1.setHash(Hash hash)
           
 

Uses of Hash in org.infinispan.commons.hash
 

Classes in org.infinispan.commons.hash that implement Hash
 class MurmurHash2
          An implementation of Austin Appleby's MurmurHash2.0 algorithm, as documented on his website.
 class MurmurHash2Compat
          An implementation of Austin Appleby's MurmurHash2.0 algorithm, as documented on his website.
 class MurmurHash3
          MurmurHash3 implementation in Java, based on Austin Appleby's original in C Only implementing x64 version, because this should always be faster on 64 bit native processors, even 64 bit being ran with a 32 bit OS; this should also be as fast or faster than the x86 version on some modern 32 bit processors.
 

Uses of Hash in org.infinispan.config
 

Method parameters in org.infinispan.config with type arguments of type Hash
 FluentConfiguration.HashConfig FluentConfiguration.HashConfig.hashFunctionClass(Class<? extends Hash> hashFunctionClass)
          Deprecated. A fully qualified name of the class providing a hash function, used as a bit spreader and a general hash code generator.
 FluentConfiguration.HashConfig Configuration.HashType.hashFunctionClass(Class<? extends Hash> hashFunctionClass)
          Deprecated.  
 

Uses of Hash in org.infinispan.configuration.cache
 

Methods in org.infinispan.configuration.cache that return Hash
 Hash HashConfiguration.hash()
          The hash function in use.
 

Methods in org.infinispan.configuration.cache with parameters of type Hash
 HashConfigurationBuilder HashConfigurationBuilder.hash(Hash hash)
          The hash function in use.
 

Uses of Hash in org.infinispan.distribution.ch
 

Methods in org.infinispan.distribution.ch that return Hash
 Hash SyncConsistentHashFactory.Builder.getHashFunction()
           
 Hash ReplicatedConsistentHash.getHashFunction()
           
 Hash DefaultConsistentHash.getHashFunction()
           
 Hash ConsistentHash.getHashFunction()
           
 

Methods in org.infinispan.distribution.ch with parameters of type Hash
 DefaultConsistentHash DefaultConsistentHashFactory.Builder.build(Hash hashFunction)
           
 DefaultConsistentHash SyncConsistentHashFactory.create(Hash hashFunction, int numOwners, int numSegments, List<Address> members)
           
 CH ConsistentHashFactory.create(Hash hashFunction, int numOwners, int numSegments, List<Address> members)
          Create a new consistent hash instance.
 DefaultConsistentHash DefaultConsistentHashFactory.create(Hash hashFunction, int numOwners, int numSegments, List<Address> members)
           
 ReplicatedConsistentHash ReplicatedConsistentHashFactory.create(Hash hashFunction, int numOwners, int numSegments, List<Address> members)
           
protected  int SyncConsistentHashFactory.normalizedHash(Hash hashFunction, int hashcode)
           
 

Constructors in org.infinispan.distribution.ch with parameters of type Hash
DefaultConsistentHash(Hash hashFunction, int numOwners, int numSegments, List<Address> members, List<Address>[] segmentOwners)
           
 

Uses of Hash in org.infinispan.distribution.group
 

Methods in org.infinispan.distribution.group that return Hash
 Hash GroupingConsistentHash.getHashFunction()
           
 

Uses of Hash in org.infinispan.topology
 

Methods in org.infinispan.topology that return Hash
 Hash CacheJoinInfo.getHashFunction()
           
 

Constructors in org.infinispan.topology with parameters of type Hash
CacheJoinInfo(ConsistentHashFactory consistentHashFactory, Hash hashFunction, int numSegments, int numOwners, long timeout)
           
 

Uses of Hash in org.infinispan.util
 

Methods in org.infinispan.util with parameters of type Hash
static int Util.getNormalizedHash(Object object, Hash hashFct)
          Applies the given hash function to the hash code of a given object, and then normalizes it to ensure a positive value is always returned.
 


Infinispan Distribution 5.2.6.Final-redhat-2

Copyright © 2013 JBoss, a division of Red Hat. All Rights Reserved.