Documentation for method closed assembled from the following pages:

Class: Channel §

From Channel

(Channel) method closed §

Defined as:

method closed(Channel:D: --> Promise:D)

Returns a promise that will be kept once the channel is closed by a call to method close.

my $c = Channel.new;
$c.closed.then({ say "It's closed!" });
$c.close;
sleep 1;