Class: ActiveOutbox::Configuration
- Inherits:
-
Object
- Object
- ActiveOutbox::Configuration
- Defined in:
- lib/active_outbox/configuration.rb
Instance Attribute Summary collapse
-
#adapter ⇒ Object
Returns the value of attribute adapter.
-
#outbox_mapping ⇒ Object
Returns the value of attribute outbox_mapping.
Instance Method Summary collapse
-
#initialize ⇒ Configuration
constructor
A new instance of Configuration.
Constructor Details
#initialize ⇒ Configuration
Returns a new instance of Configuration.
21 22 23 24 |
# File 'lib/active_outbox/configuration.rb', line 21 def initialize @adapter = :sqlite @outbox_mapping = {} end |
Instance Attribute Details
#adapter ⇒ Object
Returns the value of attribute adapter.
19 20 21 |
# File 'lib/active_outbox/configuration.rb', line 19 def adapter @adapter end |
#outbox_mapping ⇒ Object
Returns the value of attribute outbox_mapping.
19 20 21 |
# File 'lib/active_outbox/configuration.rb', line 19 def outbox_mapping @outbox_mapping end |