In Channel§
See primary documentation in context for sub await
multi await(Channel)multi await(*@)
Waits until all of one or more Channel
s has a value available, and returns those values (it calls .receive
on the Channel
). Also works with Promise
s.
my = Channel.new;Promise.in(1).then();say await ;
Since 6.d, it no longer blocks a thread while waiting.
In Promise§
See primary documentation in context for sub await
multi await(Promise --> Promise)multi await(*@ --> Array)
Waits until one or more promises are all fulfilled, and then returns their values. Also works on Channel
s. Any broken promises will rethrow their exceptions. If a list is passed it will return a list containing the results of awaiting each item in turn.