class Libis::Workflow::TaskRunner

noinspection RubyTooManyMethodsInspection

Public Instance Methods

namepath() click to toggle source
# File lib/libis/workflow/task_runner.rb, line 16
def namepath
  'Run'
end
names() click to toggle source
# File lib/libis/workflow/task_runner.rb, line 12
def names
  Array.new
end
run(item) click to toggle source
Calls superclass method Libis::Workflow::Task#run
# File lib/libis/workflow/task_runner.rb, line 20
def run(item)

  check_item_type ::Libis::Workflow::Base::WorkItem, item
  self.workitem = item

  info 'Ingest run started.', item

  super

end