class Bumbleworks::StorageParticipant

Public Instance Methods

current_workitem() click to toggle source
# File lib/bumbleworks/participants/storage_participant.rb, line 13
def current_workitem
  self[workitem.sid]
end
on_workitem() click to toggle source
Calls superclass method
# File lib/bumbleworks/participants/storage_participant.rb, line 3
def on_workitem
  return_value = super
  trigger_on_dispatch
  return return_value
end
trigger_on_dispatch() click to toggle source
# File lib/bumbleworks/participants/storage_participant.rb, line 9
def trigger_on_dispatch
  Bumbleworks::Task.new(current_workitem).on_dispatch
end