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, #timed_wait_for_all, #timed_wait_for_any, #timed_wait_for_function, #wait_for_all, #wait_for_any, #wait_for_function, #wait_for_function_helper

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.



59
60
61
62
63
64
65
66
# File 'lib/aws/decider.rb', line 59

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