Class: Orchestrated::Handler

Inherits:
Object
  • Object
show all
Defined in:
lib/orchestrated/orchestration.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(value, sym, args) ⇒ Handler

Returns a new instance of Handler.



12
13
14
# File 'lib/orchestrated/orchestration.rb', line 12

def initialize(value,sym,args)
  @value,@sym,@args=value,sym,args
end

Instance Attribute Details

#argsObject

Returns the value of attribute args.



11
12
13
# File 'lib/orchestrated/orchestration.rb', line 11

def args
  @args
end

#symObject

Returns the value of attribute sym.



10
11
12
# File 'lib/orchestrated/orchestration.rb', line 10

def sym
  @sym
end

#valueObject

Returns the value of attribute value.



9
10
11
# File 'lib/orchestrated/orchestration.rb', line 9

def value
  @value
end