Class: Utils::ProbeServer::Job

Inherits:
Object
  • Object
show all
Defined in:
lib/utils/probe_server.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(probe_server, args) ⇒ Job

Returns a new instance of Job.



10
11
12
13
# File 'lib/utils/probe_server.rb', line 10

def initialize(probe_server, args)
  @id           = probe_server.next_job_id
  @args         = args
end

Instance Attribute Details

#argsObject (readonly)

Returns the value of attribute args.



17
18
19
# File 'lib/utils/probe_server.rb', line 17

def args
  @args
end

#idObject (readonly)

Returns the value of attribute id.



15
16
17
# File 'lib/utils/probe_server.rb', line 15

def id
  @id
end

Instance Method Details

#inspectObject



19
20
21
# File 'lib/utils/probe_server.rb', line 19

def inspect
  "#<#{self.class}: id=#{id} args=#{args.inspect}>"
end