module MrDarcy::Drivers::Synchronous

Public Instance Methods

dispatch() { || ... } click to toggle source

Immediately yields whatever block is passed into it.

# File lib/mr_darcy/drivers/synchronous.rb, line 10
def dispatch
  yield
end
wait() { || ... } click to toggle source

Immediately yields whatever block is passed into it.

# File lib/mr_darcy/drivers/synchronous.rb, line 15
def wait
  yield
end