GSP
Quick Navigator

Search Site

Unix VPS
A - Starter
B - Basic
C - Preferred
D - Commercial
MPS - Dedicated
Previous VPSs
* Sign Up! *

Support
Contact Us
Online Help
Handbooks
Domain Status
Man Pages

FAQ
Virtual Servers
Pricing
Billing
Technical

Network
Facilities
Connectivity
Topology Map

Miscellaneous
Server Agreement
Year 2038
Credits
 

USA Flag

 

 

Man Pages
Directory::Queue::Set(3) User Contributed Perl Documentation Directory::Queue::Set(3)

Directory::Queue::Set - object oriented interface to a set of Directory::Queue objects

  use Directory::Queue;
  use Directory::Queue::Set;

  $dq1 = Directory::Queue->new(path => "/tmp/q1");
  $dq2 = Directory::Queue->new(path => "/tmp/q2");
  $dqset = Directory::Queue::Set->new($dq1, $dq2);

  ($dq, $elt) = $dqset->first();
  while ($dq) {
      # you can now process the element $elt of queue $dq...
      ($dq, $elt) = $dqset->next();
  }

This module can be used to put different queues into a set and browse them as one queue. The elements from all queues are merged together and sorted independently from the queue they belong to.

This works both with Directory::Queue::Normal and Directory::Queue::Simple queues. Queues of different types can even be mixed.

The following methods are available:
new([DIRQ...])
return a new Directory::Queue::Set object containing the given queue objects (class method)
add([DIRQ...])
add the given queue objects to the queue set; resetting the iterator
remove([DIRQ...])
remove the given queue objects from the queue set; resetting the iterator
first()
return the first (queue, element) couple in the queue set, resetting the iterator; return an empty list if the queue is empty
next()
return the next (queue, element) couple in the queue set; return an empty list if there is no next element
count()
return the total number of elements in all the queues of the set

Directory::Queue.

Lionel Cons <http://cern.ch/lionel.cons>

Copyright (C) CERN 2010-2021

2021-10-13 perl v5.32.1

Search for    or go to Top of page |  Section 3 |  Main Index

Powered by GSP Visit the GSP FreeBSD Man Page Interface.
Output converted with ManDoc.