This commit is contained in:
Loic Nageleisen 2015-08-03 13:50:05 +02:00
parent 1921f98e47
commit 5a968ac76c
11 changed files with 219 additions and 0 deletions

View file

@ -0,0 +1,15 @@
# https://gobyexample.com/channel-synchronization
require 'channel'
def worker(done)
puts 'working...'
sleep 1
puts 'done'
done << true
end
done = Channel.new(1)
go -> { worker(done) }
done.recv