Class: BatchRequestApi::Configuration
- Inherits:
-
Object
- Object
- BatchRequestApi::Configuration
- Defined in:
- lib/batch_request_api/configuration.rb
Instance Attribute Summary collapse
-
#batch_parallel_paths ⇒ Object
Returns the value of attribute batch_parallel_paths.
-
#batch_sequential_paths ⇒ Object
Returns the value of attribute batch_sequential_paths.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
16 17 18 19 |
# File 'lib/batch_request_api/configuration.rb', line 16 def initialize self.batch_sequential_paths = ['/api/v1/batch_sequential'] self.batch_parallel_paths = ['/api/v1/batch_parallel'] end |
Instance Attribute Details
#batch_parallel_paths ⇒ Object
Returns the value of attribute batch_parallel_paths.
14 15 16 |
# File 'lib/batch_request_api/configuration.rb', line 14 def batch_parallel_paths @batch_parallel_paths end |
#batch_sequential_paths ⇒ Object
Returns the value of attribute batch_sequential_paths.
13 14 15 |
# File 'lib/batch_request_api/configuration.rb', line 13 def batch_sequential_paths @batch_sequential_paths end |