Class: Stella::Engine::Load::ThreadPackage

Inherits:
Object
  • Object
show all
Defined in:
lib/stella/engine/load.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(i, c, u) ⇒ ThreadPackage

Returns a new instance of ThreadPackage.



71
72
73
# File 'lib/stella/engine/load.rb', line 71

def initialize(i, c, u)
  @index, @client, @usecase = i, c, u
end

Instance Attribute Details

#clientObject

Returns the value of attribute client.



69
70
71
# File 'lib/stella/engine/load.rb', line 69

def client
  @client
end

#indexObject

Returns the value of attribute index.



68
69
70
# File 'lib/stella/engine/load.rb', line 68

def index
  @index
end

#usecaseObject

Returns the value of attribute usecase.



70
71
72
# File 'lib/stella/engine/load.rb', line 70

def usecase
  @usecase
end