class Chore::Strategy::WorkerInfo

Attributes

pid[RW]

Holds meta information about the worker: pid, and connection socket

socket[RW]

Holds meta information about the worker: pid, and connection socket

Public Class Methods

new(pid) click to toggle source
# File lib/chore/strategies/worker/helpers/worker_info.rb, line 7
def initialize(pid)
  @pid = pid
  @socket = nil
end