Akka.Tests.Dispatch.IntPriorityMailbox.PriorityGenerator C# (CSharp) Method

PriorityGenerator() protected method

protected PriorityGenerator ( object message ) : int
message object
return int
        protected override int PriorityGenerator(object message)
        {
            return message as int? ?? Int32.MaxValue;
        }
    }
IntPriorityMailbox