Class: Taskinator::ProcessWorker

Inherits:
Object
  • Object
show all
Defined in:
lib/taskinator/process_worker.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(uuid) ⇒ ProcessWorker

Returns a new instance of ProcessWorker.



5
6
7
# File 'lib/taskinator/process_worker.rb', line 5

def initialize(uuid)
  @uuid = uuid
end

Instance Attribute Details

#uuidObject (readonly)

Returns the value of attribute uuid.



3
4
5
# File 'lib/taskinator/process_worker.rb', line 3

def uuid
  @uuid
end

Instance Method Details

#performObject



9
10
11
# File 'lib/taskinator/process_worker.rb', line 9

def perform
  # TODO: build the process, and enqueue it. after it completes, report back to the containing process
end