Module: Concur::Runnable

Defined in:
lib/runnable.rb

Instance Method Summary collapse

Instance Method Details

#callObject



9
10
11
# File 'lib/runnable.rb', line 9

def call
  run
end

#runObject



5
6
7
# File 'lib/runnable.rb', line 5

def run
  raise "No run method defined in your runable!"
end