| UnboundedPriorityMessageQueue Constructor (FuncObject, Int32, Int32) |
Creates a new unbounded priority message queue.
Namespace:
Akka.Dispatch.MessageQueues
Assembly:
Akka (in Akka.dll) Version: 1.2.3.129 (1.2.3.129)
Syntax public UnboundedPriorityMessageQueue(
Func<Object, int> priorityGenerator,
int initialCapacity
)
new :
priorityGenerator : Func<Object, int> *
initialCapacity : int -> UnboundedPriorityMessageQueue
Parameters
- priorityGenerator
- Type: SystemFuncObject, Int32
The calculator function for determining the priority of inbound messages. - initialCapacity
- Type: SystemInt32
The initial capacity of the queue.
See Also