📄 queue.pm
字号:
package Thread::Queue;use Thread qw(cond_wait cond_broadcast);=head1 NAMEThread::Queue - thread-safe queues=head1 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 queue=head1 DESCRIPTIONA queue, as implemented by C<Thread::Queue> is a thread-safe data structuremuch like a list. Any number of threads can safely add elements to the endof the list, or remove elements from the head of the list. (Queues don'tpermit adding or removing elements from the middle of the list)=head1 FUNCTIONS AND METHODS=over 8=item newThe C<new> function creates a new empty queue.=item enqueue LISTThe C<enqueue> method adds a list of scalars on to the end of the queue.The queue will grow as needed to accomodate the list.=item dequeueThe C<dequeue> method removes a scalar from the head of the queue andreturns it. If the queue is currently empty, C<dequeue> will block thethread until another thread C<enqueue>s a scalar.=item dequeue_nbThe C<dequeue_nb> method, like the C<dequeue> method, removes a scalar fromthe head of the queue and returns it. Unlike C<dequeue>, though,C<dequeue_nb> won't block if the queue is empty, instead returningC<undef>.=item pendingThe C<pending> method returns the number of items still in the queue. (Ifthere can be multiple readers on the queue it's best to lock the queuebefore checking to make sure that it stays in a consistent state)=back=head1 SEE ALSOL<Thread> =cutsub new { my $class = shift; return bless [@_], $class;}sub dequeue : locked : method { my $q = shift; cond_wait $q until @$q; return shift @$q;}sub dequeue_nb : locked : method { my $q = shift; if (@$q) { return shift @$q; } else { return undef; }}sub enqueue : locked : method { my $q = shift; push(@$q, @_) and cond_broadcast $q;}sub pending : locked : method { my $q = shift; return scalar(@$q);}1;
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -