module Barbeque::Executor

Executor is responsible for starting executions and getting status of executions. Each executor must implement these methods.

Public Class Methods

create() click to toggle source
# File lib/barbeque/executor.rb, line 24
def self.create
  klass = const_get(Barbeque.config.executor, false)
  klass.new(Barbeque.config.executor_options)
end