NAME
Thread::Queue - thread-safe queues (5.005-threads)
CAVEAT
This Perl installation is using the old unsupported "5.005 threads". Use of the old threads model is discouraged.
For the whole story about the development of threads in Perl, and why you should not be using "old threads" unless you know what you're doing, see the CAVEAT of the Thread module.
SYNOPSIS
use Thread::Queue;
my $q = new Thread::Queue;
$q->enqueue("foo", "bar");
my $foo = $q->dequeue;    # The "bar" is still in the queue.
my $foo = $q->dequeue_nb; # returns "bar", or undef if the queue was
                          # empty
my $left = $q->pending;   # returns the number of items still in the queueDESCRIPTION
A queue, as implemented by Thread::Queue is a thread-safe data structure much like a list. Any number of threads can safely add elements to the end of the list, or remove elements from the head of the list. (Queues don't permit adding or removing elements from the middle of the list)
FUNCTIONS AND METHODS
- new
- 
The newfunction creates a new empty queue.
- enqueue LIST
- 
The enqueuemethod adds a list of scalars on to the end of the queue. The queue will grow as needed to accomodate the list.
- dequeue
- 
The dequeuemethod removes a scalar from the head of the queue and returns it. If the queue is currently empty,dequeuewill block the thread until another threadenqueues a scalar.
- dequeue_nb
- 
The dequeue_nbmethod, like thedequeuemethod, removes a scalar from the head of the queue and returns it. Unlikedequeue, though,dequeue_nbwon't block if the queue is empty, instead returningundef.
- pending
- 
The pendingmethod returns the number of items still in the queue. (If there can be multiple readers on the queue it's best to lock the queue before checking to make sure that it stays in a consistent state)