MCFFactory Property

In this section, we discuss the MCFFactory class property LogicalQueue.

Description

This property returns all the logical queues with which this MCFFactory object is associated, as an array of LogicalQueue objects.

This property is read-only.

Example

The following code example returns the physical queue ID for the first physical queue on the logical queue, as well as the total of overflowed taskes on the first physical queue on the logical queue.

Local number &TotalTasks;

Local MCFFactory &myMCFFactory  = Create MCFFactory ();

&PhyscalQueueID = &myMCFFactory.LogicalQueue [1].PhysicalQueue [1].PhysicalQueueID;

&TotalTasks  = &myMCFFactory.LogicalQueue [1].PhysicalQueue [1].OverflowedTaskList.Total;