Click or drag to resize
Akka.NETConsistentHashMapping Delegate
Delegate for computing the hashkey from any given type of message. Extracts the property / data that is going to be used for a given hash, but doesn't actually return the hash values themselves. If returning a byte[] or string it will be used as is, otherwise the configured Serializer will be applied to the returned data.

Namespace:  Akka.Routing
Assembly:  Akka (in Akka.dll) Version: 1.2.3.42 (1.2.3.42)
Syntax
public delegate Object ConsistentHashMapping(
	Object msg
)

Parameters

msg
Type: SystemObject

Return Value

Type: Object
See Also