Class: Messed::Configuration::Queues
- Inherits:
-
Object
- Object
- Messed::Configuration::Queues
- Includes:
- ConfigHelper
- Defined in:
- lib/messed/configuration.rb
Defined Under Namespace
Classes: IndivialQueue
Instance Attribute Summary collapse
-
#incoming ⇒ Object
readonly
Returns the value of attribute incoming.
-
#outgoing ⇒ Object
readonly
Returns the value of attribute outgoing.
Instance Method Summary collapse
-
#initialize ⇒ Queues
constructor
A new instance of Queues.
Methods included from ConfigHelper
Constructor Details
#initialize ⇒ Queues
Returns a new instance of Queues.
63 64 65 66 |
# File 'lib/messed/configuration.rb', line 63 def initialize @incoming = IndivialQueue.new @outgoing = IndivialQueue.new end |
Instance Attribute Details
#incoming ⇒ Object (readonly)
Returns the value of attribute incoming.
61 62 63 |
# File 'lib/messed/configuration.rb', line 61 def incoming @incoming end |
#outgoing ⇒ Object (readonly)
Returns the value of attribute outgoing.
61 62 63 |
# File 'lib/messed/configuration.rb', line 61 def outgoing @outgoing end |