ViewVC Help
View File | Revision Log | Show Annotations | Download File
/cvs/Coro/Coro/Channel.pm
(Generate patch)

Comparing Coro/Coro/Channel.pm (file contents):
Revision 1.16 by root, Wed Oct 3 01:09:57 2001 UTC vs.
Revision 1.37 by root, Tue Aug 30 21:32:17 2005 UTC

25=cut 25=cut
26 26
27package Coro::Channel; 27package Coro::Channel;
28 28
29use Coro (); 29use Coro ();
30no warnings qw(uninitialized); 30BEGIN { eval { require warnings } && warnings->unimport ("uninitialized") }
31 31
32$VERSION = 0.51; 32$VERSION = 1.31;
33 33
34=item $q = new Coro:Channel $maxsize 34=item $q = new Coro:Channel $maxsize
35 35
36Create a new channel with the given maximum size (unlimited if C<maxsize> 36Create a new channel with the given maximum size (unlimited if C<maxsize>
37is omitted). Giving a size of one gives you a traditional channel, i.e. a 37is omitted). Giving a size of one gives you a traditional channel, i.e. a
98 98
99=back 99=back
100 100
101=head1 AUTHOR 101=head1 AUTHOR
102 102
103 Marc Lehmann <pcg@goof.com> 103 Marc Lehmann <schmorp@schmorp.de>
104 http://www.goof.com/pcg/marc/ 104 http://home.schmorp.de/
105 105
106=cut 106=cut
107 107

Diff Legend

Removed lines
+ Added lines
< Changed lines
> Changed lines