class EventMachine::YieldBlockFromSpawnedProcess

@private

Public Class Methods

new(block, notify) click to toggle source
# File lib/em/spawnable.rb, line 60
def initialize block, notify
  @block = [block,notify]
end

Public Instance Methods

pull_out_yield_block() click to toggle source
# File lib/em/spawnable.rb, line 63
def pull_out_yield_block
  @block
end