package org.infinispan.distribution; /** * Classes that impliment this interface provide a hash function, * chosen to produce a uniform distribution from an arbitrary object. * * @version $Rev: $, $Date: $ * @author akluge */ public interface Hasher { public int hash(Object object); }