IsActive property: PhysicalQueue class

Description

This property returns true if the physical queue is active, false otherwise.

This property is read-only.

Example

Local LogicalQueue &myLogicalQueue  = Create LogicalQueue (&LogicalQueueID);

For &I = 1 to &myLogicalQueue.PhysicalQueue.Len

&PhyscalQueueID = &myLogicalQueue.PhysicalQueue[&I].PhyscalQueueID;
&myPhysicalQueue = Create PhysicalQueue (&PhysicalQueueID);

   If &myPhysicalQueue.IsActive Then
      /* do work */
   Else
      /* return error */
   End-If;

End-For;