Method: FireAndForget::Launcher#set_status
- Defined in:
- lib/fire_and_forget/launcher.rb
#set_status(task_name, status) ⇒ Object
Sets the status of the given task enabling simple interprocess communication through string messages
64 65 66 67 |
# File 'lib/fire_and_forget/launcher.rb', line 64 def set_status(task_name, status) command = Command::SetStatus.new(task_name, status) Client.run(command) end |