public final class ConsistentHashingRoutingLogic extends java.lang.Object implements RoutingLogic, scala.Product, scala.Serializable
Constructor and Description |
---|
ConsistentHashingRoutingLogic(ActorSystem system)
Java API
|
ConsistentHashingRoutingLogic(ActorSystem system,
int virtualNodesFactor,
scala.PartialFunction<java.lang.Object,java.lang.Object> hashMapping) |
Modifier and Type | Method and Description |
---|---|
abstract static boolean |
canEqual(java.lang.Object that) |
static Address |
defaultAddress(ActorSystem system)
Address to use for the selfAddress parameter
|
abstract static boolean |
equals(java.lang.Object that) |
scala.PartialFunction<java.lang.Object,java.lang.Object> |
hashMapping() |
abstract static int |
productArity() |
abstract static java.lang.Object |
productElement(int n) |
static scala.collection.Iterator<java.lang.Object> |
productIterator() |
static java.lang.String |
productPrefix() |
Routee |
select(java.lang.Object message,
scala.collection.immutable.IndexedSeq<Routee> routees)
Pick the destination for a given message.
|
ActorSystem |
system() |
int |
virtualNodesFactor() |
int |
vnodes() |
ConsistentHashingRoutingLogic |
withHashMapper(ConsistentHashingRouter.ConsistentHashMapper mapper)
Java API: Setting the mapping from message to the data to use for the consistent hash key.
|
ConsistentHashingRoutingLogic |
withVirtualNodesFactor(int vnodes)
Setting the number of virtual nodes per node, used in
ConsistentHash |
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait
public ConsistentHashingRoutingLogic(ActorSystem system, int virtualNodesFactor, scala.PartialFunction<java.lang.Object,java.lang.Object> hashMapping)
public ConsistentHashingRoutingLogic(ActorSystem system)
system
- the actor system hosting this routerpublic static Address defaultAddress(ActorSystem system)
system
- (undocumented)public abstract static boolean canEqual(java.lang.Object that)
public abstract static boolean equals(java.lang.Object that)
public abstract static java.lang.Object productElement(int n)
public abstract static int productArity()
public static scala.collection.Iterator<java.lang.Object> productIterator()
public static java.lang.String productPrefix()
public ActorSystem system()
public int virtualNodesFactor()
public scala.PartialFunction<java.lang.Object,java.lang.Object> hashMapping()
public int vnodes()
public ConsistentHashingRoutingLogic withVirtualNodesFactor(int vnodes)
ConsistentHash
vnodes
- (undocumented)public ConsistentHashingRoutingLogic withHashMapper(ConsistentHashingRouter.ConsistentHashMapper mapper)
mapper
- (undocumented)public Routee select(java.lang.Object message, scala.collection.immutable.IndexedSeq<Routee> routees)
RoutingLogic
routees
, but in the end it is up to the implementation to
return whatever Routee
to use for sending a specific message.
When implemented from Java it can be good to know that
routees.apply(index)
can be used to get an element
from the IndexedSeq
.
select
in interface RoutingLogic
message
- (undocumented)routees
- (undocumented)