Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

coro::channel(3pm) [debian man page]

Channel(3pm)						User Contributed Perl Documentation					      Channel(3pm)

NAME
Coro::Channel - message queues SYNOPSIS
use Coro; $q1 = new Coro::Channel <maxsize>; $q1->put ("xxx"); print $q1->get; die unless $q1->size; DESCRIPTION
A Coro::Channel is the equivalent of a unix pipe (and similar to amiga message ports): you can put things into it on one end and read things out of it from the other end. If the capacity of the Channel is maxed out writers will block. Both ends of a Channel can be read/written from by as many coroutines as you want concurrently. You don't have to load "Coro::Channel" manually, it will be loaded automatically when you "use Coro" and call the "new" constructor. $q = new Coro:Channel $maxsize Create a new channel with the given maximum size (practically unlimited if "maxsize" is omitted). Giving a size of one gives you a traditional channel, i.e. a queue that can store only a single element (which means there will be no buffering, and "put" will wait until there is a corresponding "get" call). To buffer one element you have to specify 2, and so on. $q->put ($scalar) Put the given scalar into the queue. $q->get Return the next element from the queue, waiting if necessary. $q->shutdown Shuts down the Channel by pushing a virtual end marker onto it: This changes the behaviour of the Channel when it becomes or is empty to return "undef", almost as if infinitely many "undef" elements have been put into the queue. Specifically, this function wakes up any pending "get" calls and lets them return "undef", the same on future "get" calls. "size" will return the real number of stored elements, though. Another way to describe the behaviour is that "get" calls will not block when the queue becomes empty but immediately return "undef". This means that calls to "put" will work normally and the data will be returned on subsequent "get" calls. This method is useful to signal the end of data to any consumers, quite similar to an end of stream on e.g. a tcp socket: You have one or more producers that "put" data into the Channel and one or more consumers who "get" them. When all producers have finished producing data, a call to "shutdown" signals this fact to any consumers. $q->size Return the number of elements waiting to be consumed. Please note that: if ($q->size) { my $data = $q->get; ... } is not a race condition but instead works just fine. Note that the number of elements that wait can be larger than $maxsize, as it includes any coroutines waiting to put data into the channel (but not any shutdown condition). This means that the number returned is precisely the number of calls to "get" that will succeed instantly and return some data. Calling "shutdown" has no effect on this number. AUTHOR
Marc Lehmann <schmorp@schmorp.de> http://home.schmorp.de/ perl v5.14.2 2012-04-13 Channel(3pm)

Check Out this Related Man Page

Storable(3pm)						User Contributed Perl Documentation					     Storable(3pm)

NAME
Coro::Storable - offer a more fine-grained Storable interface SYNOPSIS
use Coro::Storable; DESCRIPTION
This module implements a few functions from the Storable module in a way so that it cede's more often. Some applications (such as the Deliantra game server) sometimes need to load large Storable objects without blocking the server for a long time. This is being implemented by using a perlio layer that feeds only small amounts of data (4096 bytes per call) into Storable, and "Coro::cede"'ing regularly (at most 100 times per second by default, though). As Storable is not reentrant, this module also wraps most functions of the Storable module so that only one freeze or thaw is done at any one moment (and recursive invocations are not currently supported). FUNCTIONS
$ref = thaw $pst Retrieve an object from the given $pst, which must have been created with "Coro::Storable::freeze" or "Storable::store_fd"/"Storable::store" (sorry, but Storable uses incompatible formats for disk/mem objects). This function will cede regularly. $pst = freeze $ref Freeze the given scalar into a Storable object. It uses the same format as "Storable::store_fd". This functino will cede regularly. $pst = nfreeze $ref Same as "freeze" but is compatible to "Storable::nstore_fd" (note the "n"). $pst = blocking_freeze $ref Same as "freeze" but is guaranteed to block. This is useful e.g. in "Coro::Util::fork_eval" when you want to serialise a data structure for use with the "thaw" function for this module. You cannot use "Storable::freeze" for this as Storable uses incompatible formats for memory and file images, and this module uses file images. $pst = blocking_nfreeze $ref Same as "blocking_freeze" but uses "nfreeze" internally. $guard = guard Acquire the Storable lock, for when you want to call Storable yourself. Note that this module already wraps all Storable functions, so there is rarely the need to do this yourself. AUTHOR
Marc Lehmann <schmorp@schmorp.de> http://home.schmorp.de/ perl v5.14.2 2012-04-13 Storable(3pm)
Man Page