Top Level Namespace

Includes:
AWS::Flow::Core

Defined Under Namespace

Modules: AWS

Instance Method Summary collapse

Methods included from AWS::Flow::Core

#_error_handler, #daemon_task, #error_handler, #external_task, #gate_by_version, #make_backtrace, #task, #wait_for_all, #wait_for_any, #wait_for_function

Instance Method Details

#get_const(name) ⇒ Object

This method is part of a private API. You should avoid using this method if possible, as it may be removed or be changed in the future.



53
54
55
56
57
58
59
60
# File 'lib/aws/decider.rb', line 53

def get_const(name)
  name = name.split('::').reverse
  current = Object
  while ! name.empty?
    current = current.const_get(name.pop)
  end
  current
end