Class: EventStoreClient::Configuration
- Inherits:
-
Object
- Object
- EventStoreClient::Configuration
- Includes:
- Singleton
- Defined in:
- lib/event_store_client/configuration.rb
Instance Attribute Summary collapse
-
#adapter ⇒ Object
Returns the value of attribute adapter.
-
#error_handler ⇒ Object
Returns the value of attribute error_handler.
-
#mapper ⇒ Object
Returns the value of attribute mapper.
-
#per_page ⇒ Object
Returns the value of attribute per_page.
-
#pid_path ⇒ Object
Returns the value of attribute pid_path.
-
#service_name ⇒ Object
Returns the value of attribute service_name.
Instance Method Summary collapse
Instance Attribute Details
#adapter ⇒ Object
Returns the value of attribute adapter.
10 11 12 |
# File 'lib/event_store_client/configuration.rb', line 10 def adapter @adapter end |
#error_handler ⇒ Object
Returns the value of attribute error_handler.
10 11 12 |
# File 'lib/event_store_client/configuration.rb', line 10 def error_handler @error_handler end |
#mapper ⇒ Object
Returns the value of attribute mapper.
10 11 12 |
# File 'lib/event_store_client/configuration.rb', line 10 def mapper @mapper end |
#per_page ⇒ Object
Returns the value of attribute per_page.
10 11 12 |
# File 'lib/event_store_client/configuration.rb', line 10 def per_page @per_page end |
#pid_path ⇒ Object
Returns the value of attribute pid_path.
10 11 12 |
# File 'lib/event_store_client/configuration.rb', line 10 def pid_path @pid_path end |
#service_name ⇒ Object
Returns the value of attribute service_name.
10 11 12 |
# File 'lib/event_store_client/configuration.rb', line 10 def service_name @service_name end |
Instance Method Details
#configure {|_self| ... } ⇒ Object
12 13 14 |
# File 'lib/event_store_client/configuration.rb', line 12 def configure yield(self) if block_given? end |