Class: JFlow::Configuration
- Inherits:
-
Object
- Object
- JFlow::Configuration
- Defined in:
- lib/jflow/configuration.rb
Instance Attribute Summary collapse
-
#activity_map ⇒ Object
Returns the value of attribute activity_map.
-
#cloudwatch_client ⇒ Object
Returns the value of attribute cloudwatch_client.
-
#error_handlers ⇒ Object
Returns the value of attribute error_handlers.
-
#load_paths ⇒ Object
Returns the value of attribute load_paths.
-
#logger ⇒ Object
Returns the value of attribute logger.
-
#swf_client ⇒ Object
Returns the value of attribute swf_client.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
6 7 8 9 10 11 12 13 |
# File 'lib/jflow/configuration.rb', line 6 def initialize @swf_client = nil @cloudwatch_client = nil @load_paths = [] @logger = Logger.new(STDOUT) @activity_map = JFlow::Activity::Map.new @error_handlers = [] end |
Instance Attribute Details
#activity_map ⇒ Object
Returns the value of attribute activity_map.
4 5 6 |
# File 'lib/jflow/configuration.rb', line 4 def activity_map @activity_map end |
#cloudwatch_client ⇒ Object
Returns the value of attribute cloudwatch_client.
4 5 6 |
# File 'lib/jflow/configuration.rb', line 4 def cloudwatch_client @cloudwatch_client end |
#error_handlers ⇒ Object
Returns the value of attribute error_handlers.
4 5 6 |
# File 'lib/jflow/configuration.rb', line 4 def error_handlers @error_handlers end |
#load_paths ⇒ Object
Returns the value of attribute load_paths.
4 5 6 |
# File 'lib/jflow/configuration.rb', line 4 def load_paths @load_paths end |
#logger ⇒ Object
Returns the value of attribute logger.
4 5 6 |
# File 'lib/jflow/configuration.rb', line 4 def logger @logger end |
#swf_client ⇒ Object
Returns the value of attribute swf_client.
4 5 6 |
# File 'lib/jflow/configuration.rb', line 4 def swf_client @swf_client end |