module Channel::Runtime
Public Instance Methods
go(prc, *args)
click to toggle source
# File lib/channel/runtime.rb, line 6 def go(prc, *args) Thread.new { prc.call(*args) } end
# File lib/channel/runtime.rb, line 6 def go(prc, *args) Thread.new { prc.call(*args) } end