Module: FlowCore::TaskExecutable

Extended by:
ActiveSupport::Concern
Defined in:
lib/flow_core/task_executable.rb

Instance Method Summary collapse

Instance Method Details

#finished?Boolean

Returns:

  • (Boolean)

Raises:

  • (NotImplementedError)


20
21
22
# File 'lib/flow_core/task_executable.rb', line 20

def finished?
  raise NotImplementedError
end

#implicit_notify_workflow_task_finishedObject



24
25
26
# File 'lib/flow_core/task_executable.rb', line 24

def implicit_notify_workflow_task_finished
  true
end

#run!Object

For automatic task

Raises:

  • (NotImplementedError)


16
17
18
# File 'lib/flow_core/task_executable.rb', line 16

def run!
  raise NotImplementedError
end