Method: TaskTempest::Bootstrap#bootstrap

Defined in:
lib/task_tempest/bootstrap.rb

#bootstrap(error_action) ⇒ Object



70
71
72
73
74
75
76
77
78
79
80
81
82
83
# File 'lib/task_tempest/bootstrap.rb', line 70

def bootstrap(error_action)
  init_logging
  with_error_handling(error_action) do
    before_initialize
    init_require
    init_tasks
    init_thread_pool
    init_queue
    init_bookkeeper
    init_task_logging
    init_dispatcher
    after_initialize
  end
end