Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

rxqueue(1) [debian man page]

rxqueue(1)						      General Commands Manual							rxqueue(1)

Name
       rxqueue - The Regina Rexx Interpreter external queue utility

Syntax
       rxqueue [ queue ] [ /fifo | /lifo | /clear | /pull | /queued ] [ text ]

Description
       rxqueue is utility that provides access to the Regian Rexx external queue daemon (rxstack) via stdin and stdout

Options
       queue  The name of the queue to use. By default this is SESSION.

       /fifo  Stacks the text onto the queue in first in, first out order.

       /lifo  Stacks the text onto the queue in last in, first out order.

       /clear Removes all lines currently stacked in the queue.

       /pull  Extracts the next line from the queue to stdout and removes it from the queue.

       /queued
	      Returns the number of lines stacked on the queue to stdout

Environment
       rxqueue uses the following environment variables if set.

       RXDEBUG
	      Enables debugging. Same as specifying -D option.

       RXSTACK
	      The port number on which rxqueue listens. By default this is 5757.

       RXQUEUE
	      The name of the queue to be used if not specified by the client using rxqueue.  By default this is SESSION.

Copyright
       The Regina Rexx interpreter is distributed under the GNU Library General Public License, see the file `COPYING-LIB' in the source code dis-
       tribution.

Author
       Anders Christensen, University of Trondheim, Norway <anders@pvv.unit.no>.

Maintainer
       Changes to Regina since 0.07a, Mark Hessling <mark (at) rexx.org> with significant assistance from Florian Grosse-Coosmann.

See Also
       rxstack(1)

       There are several good reference books on Rexx. The most famous is "The Rexx Language" by Mike Cowlishaw.  Visit http://www.rexxla.org (The
       Rexx Language Association) for any Rexx related information.

																	rxqueue(1)

Check Out this Related Man Page

queue(n)							Tcl Data Structures							  queue(n)

NAME
queue - Create and manipulate queue objects SYNOPSIS
package require Tcl 8.2 package require struct ?1.2.1? queueName option ?arg arg ...? queueName clear queueName destroy queueName get ?count? queueName peek ?count? queueName put item ?item ...? queueName size DESCRIPTION
The ::struct::queue command creates a new queue object with an associated global Tcl command whose name is queueName. This command may be used to invoke various operations on the queue. It has the following general form: queueName option ?arg arg ...? Option and the args determine the exact behavior of the command. The following commands are possible for queue objects: queueName clear Remove all items from the queue. queueName destroy Destroy the queue, including its storage space and associated command. queueName get ?count? Return the front count items of the queue and remove them from the queue. If count is not specified, it defaults to 1. If count is 1, the result is a simple string; otherwise, it is a list. If specified, count must be greater than or equal to 1. If there are no items in the queue, this command will return count empty strings. queueName peek ?count? Return the front count items of the queue, without removing them from the queue. If count is not specified, it defaults to 1. If count is 1, the result is a simple string; otherwise, it is a list. If specified, count must be greater than or equal to 1. If there are no items in the queue, this command will return count empty strings. queueName put item ?item ...? Put the item or items specified into the queue. If more than one item is given, they will be added in the order they are listed. queueName size Return the number of items in the queue. KEYWORDS
stack, matrix, tree, graph struct 1.2.1 queue(n)
Man Page