1threads::lite::queue(3)User Contributed Perl Documentatiotnhreads::lite::queue(3)
2
3
4
6 threads::lite::queue - a threads::lite persistent queue
7
9 Version 0.034
10
12 This module represents a queue object/
13
15 new()
16 Creates a new queue object. Note that queues have to be destroyed
17 explicitly.
18
19 enqueue(...)
20 Send the list of arguments to the queue.
21
22 dequeue()
23 Receive the front entry from the queue. If the queue is empty then it
24 blocks.
25
26 dequeue_nb()
27 Receive the front entry from the queue. If the queue is empty then it
28 returns an empty list.
29
30 destroy
32 Leon Timmermans, "<leont at cpan.org>"
33
35 This is an early release, it is expected to have plenty of bugs.
36
37 Please report any bugs or feature requests to "bug-threads-lite at
38 rt.cpan.org", or through the web interface at
39 <http://rt.cpan.org/NoAuth/ReportBug.html?Queue=threads-lite>. I will
40 be notified, and then you'll automatically be notified of progress on
41 your bug as I make changes.
42
44 You can find documentation for this module with the perldoc command.
45
46 perldoc threads::lite
47
48 You can also look for information at:
49
50 · RT: CPAN's request tracker
51
52 <http://rt.cpan.org/NoAuth/Bugs.html?Dist=threads-lite>
53
54 · AnnoCPAN: Annotated CPAN documentation
55
56 <http://annocpan.org/dist/threads-lite>
57
58 · CPAN Ratings
59
60 <http://cpanratings.perl.org/d/threads-lite>
61
62 · Search CPAN
63
64 <http://search.cpan.org/dist/threads-lite>
65
67 Copyright 2009, 2010 Leon Timmermans, all rights reserved.
68
69 This program is free software; you can redistribute it and/or modify it
70 under the same terms as Perl itself.
71
72
73
74perl v5.30.0 2019-07-26 threads::lite::queue(3)