| STOPQUE(DIR,QUEUE) | 
Routine designed to set a "Stop" flag on a named
queue. Flag to set is ^HLTMP("STOPPED QUEUES",DIR,QUEUE).
 | 
| VARIABLES | 
TYPE | 
VARIABLES DESCRIPTION | 
 
DIR | 
Input | 
Direction of queue. Values are "IN" or "OUT".
 
 | 
QUEUE | 
Input | 
The name of the queue to be stopped.
 
 | 
 
 | 
STARTQUE(DIR,QUEUE) | 
Routine designed to remove a "Stop" flag on a named
queue. Flag to remove is ^HLTMP("STOPPED QUEUES",DIR,QUEUE).
 | 
| VARIABLES | 
TYPE | 
VARIABLES DESCRIPTION | 
 
DIR | 
Input | 
Direction of queue. Values are "IN" or "OUT".
 
 | 
QUEUE | 
Input | 
The name of the queue to be started.
 
 | 
 
 | 
$$STOPPED(DIR,QUEUE) | 
Function designed to check the status of a queue by
determining if a "Stop" flag has been set on a named queue. Flag to check is
^HLTMP("STOPPED QUEUES",DIR,QUEUE).
 | 
| VARIABLES | 
TYPE | 
VARIABLES DESCRIPTION | 
 
DIR | 
Input | 
Direction of queue. Values are "IN" or "OUT".
 
 | 
QUEUE | 
Input | 
The name of the queue to be checked.
 
 | 
$$STOPPED | 
Output | 
The function returns 1 if the named queue is stopped,
0 otherwise.
 
 | 
 
 |