class EventQ::WorkerProcess

Class that is used to represent a process and its associated threads.

Attributes

pid[RW]
threads[R]

Public Class Methods

new(pid) click to toggle source
# File lib/eventq/worker_status.rb, line 49
def initialize(pid)
  self.pid = pid
  @threads = Concurrent::Array.new
end