Class: TimeMachine::Executors::Executor

Inherits:
Object
  • Object
show all
Defined in:
lib/executor.rb

Overview

The base class (interface) for a executor.

Direct Known Subclasses

ThreadExecutor

Instance Method Summary collapse

Instance Method Details

#execute(&block) ⇒ Object

Raises:

  • (NotImplementedError)


14
15
16
# File 'lib/executor.rb', line 14

def execute(&block)
  raise NotImplementedError
end