class EM::Batch

Batch of the objects and method names with arguments for runninng on a series.

Public Instance Methods

schedule_call(&block) click to toggle source

Schedules next call execution. @yield

# File lib/em-batch.rb, line 53
def schedule_call(&block)
    EM::next_tick(&block)
end
schedule_tick(&block) click to toggle source

Schedules next tick execution. @yield

# File lib/em-batch.rb, line 44
def schedule_tick(&block)
    EM::next_tick(&block)
end