Packages

t

akka.routing.ConsistentHashingRouter

ConsistentHashMapper

trait ConsistentHashMapper extends AnyRef

JAVA API Mapping from message to the data to use for the consistent hash key. Note that it's not the hash that is to be returned, but the data to be hashed.

May return null to indicate that the message is not handled by this mapping.

If returning an Array[Byte] or String it will be used as is, otherwise the configured akka.serialization.Serializer will be applied to the returned data.

Source
ConsistentHashing.scala
Linear Supertypes
Type Hierarchy
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. ConsistentHashMapper
  2. AnyRef
  3. Any
Implicitly
  1. by any2stringadd
  2. by StringFormat
  3. by Ensuring
  4. by ArrowAssoc
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def hashKey(message: Any): Any