Module: Channel::Runtime

Defined in:
lib/channel/runtime.rb

Class Method Summary collapse

Class Method Details

.go(prc, *args) ⇒ Object



6
7
8
# File 'lib/channel/runtime.rb', line 6

def go(prc, *args)
  Thread.new { prc.call(*args) }
end