Concurrent::BoundedChannel - A Channel with limited number of elements
use Concurrent::BoundedChannel;
# Construct a BoundedChannel with 20 entries
my $bc = BoundedChannel.new(limit=>20);
$bc.send('x'); # will block if $bc is full
my $val = $bc.receive; # returns 'x'
my $oval=$bc.offer('y'); # non-blocking send - returns the offered value
# ('y' in this case), or Nil if $bc is full
$val=$bc.poll;
$bc.close;
# OR
$bc.fail(X::SomeException.new);
The normal Raku Channel
is an unbounded queue. This subclass offers an alternative with size limits.
The normal Raku Channel
class is an unbounded queue. It will grow indefinitely as long as values are fed in and not removed.
In some cases that may not be desirable. BoundedChannel
is a subclass of Channel
with a set size limit. It behaves just like Channel
, with some exceptions:
-
The send method will block, if the Channel is already populated with the maximum number of elements.
-
There is a new
offer
method, which is the send equivalent of poll - i.e. a non-blocking send. It returnsNil
if the Channel is full, otherwise it returns the offered value. -
If one or more threads is blocking on a send, and the channel is closed, those send calls will throw exceptions, just as if send had been called on a closed normal Channel.
The fail
method is an exception to the BoundedChannel
limit. If the BoundedChannel is full, and fail
is called, the exception specified will still be placed at the end of the queue, even if that would violate the limit. This was deemed acceptable to avoid having a fail contend with blocking send calls.
The constructor takes one parameter (limit), which can be anwhere from zero to as large as you wish. A zero limit BoundedChannel
behaves similar to a UNIX pipe - a send will block unless a receive is already waiting for value, and a receive will block unless a send is already waiting.
gotoexit
Copyright 2016 - 2017 gotoexit
Copyright 2024 Raku Community
This library is free software; you can redistribute it and/or modify it under the Artistic License 2.0.