I would like to set up a number of threads operating concurrently on a channel, and every one of those threads should be also feeding the channel. One of the threads would decide when to stop. However, this is the closest I have come to doing that:
use Algorithm::Evolutionary::Simple;
my $length = 32;
my $supplier = Supplier.new;
my $supply = $supplier.Supply;
my $channel-one = $supply.Channel;
my $pairs-supply = $supply.batch( elems => 2 );
my $channel-two = $pairs-supply.Channel;
my $single = start {
react {
whenever $channel-one -> $item {
say "via Channel 1:", max-ones($item);
}
}
}
my $pairs = start {
react {
whenever $channel-two -> @pair {
my @new-chromosome = crossover( @pair[0], @pair[1] );
say "In Channel 2: ", @new-chromosome;
$supplier.emit( @new-chromosome[0]);
$supplier.emit( @new-chromosome[1]);
}
}
}
await (^10).map: -> $r {
start {
sleep $r/100.0;
$supplier.emit( random-chromosome($length) );
}
}
$supplier.done;
This stops after a number of emissions. And it's probably not running concurrently anyway. I am using channels instead of supplies and taps because these are not run concurrently, but asynchronously. I need supplies because I want to have a seudo-channel that takes the elements in pairs, as it's done above; I haven't seen the way of doing that with pure channels.
There is no difference above if I change the supply's emit to channel's send.
So several questions here
Are these
reactblocks run in different threads? If not, what would be the way of doing that?Even if they are not, why does it stop even if
$pairsis emitting to the channel all the time?Could I have "batch" channels created automatically from single-item channels?
Update 1: if I eliminate $supplier.done from the end, it will just block. If I create a promise in whenever, one for each read, it just blocks and does nothing.
start react whenever ... { … }instead ofstart { react { whenever ... { … } } }my Channel $c .= new; $c.send($_) for ^20; $c.close; my Channel $c2 .= new; my $work = start { $c2.send: $_ for $c.List.rotor(2); $c2.close; CATCH { default { $c2.fail($_) } } }; .say for $c2.List; await $work- check to see if you want :partial on the rotor call, too.if ( $count++ < 100 ) { $c.send( $count ); } else { $c.close; }so that it keeps feeding the first channel, that feeds the second, it hangs up after the initial 20 numbers.$countwould be initialized to 0 before that.