Akka.Routing.ConsistentHashableEnvelope.ConsistentHashableEnvelope C# (CSharp) Method

ConsistentHashableEnvelope() public method

Initializes a new instance of the ConsistentHashableEnvelope class.
public ConsistentHashableEnvelope ( object message, object hashKey ) : System
message object The message that is being wrapped in the envelope.
hashKey object The key used as the consistent hash key for the envelope.
return System
        public ConsistentHashableEnvelope(object message, object hashKey)
            : base(message)
        {
            HashKey = hashKey;
        }
ConsistentHashableEnvelope