Class: AtlasEngine::AddressValidation::ConcernQueue
- Inherits:
-
Object
- Object
- AtlasEngine::AddressValidation::ConcernQueue
- Extended by:
- T::Sig
- Includes:
- Singleton
- Defined in:
- app/models/atlas_engine/address_validation/concern_queue.rb
Instance Attribute Summary collapse
-
#queue ⇒ Object
readonly
Returns the value of attribute queue.
Instance Method Summary collapse
-
#initialize ⇒ ConcernQueue
constructor
A new instance of ConcernQueue.
Constructor Details
#initialize ⇒ ConcernQueue
Returns a new instance of ConcernQueue.
14 15 16 17 |
# File 'app/models/atlas_engine/address_validation/concern_queue.rb', line 14 def initialize super @queue = T.let(Queue.new, Queue) end |
Instance Attribute Details
#queue ⇒ Object (readonly)
Returns the value of attribute queue.
11 12 13 |
# File 'app/models/atlas_engine/address_validation/concern_queue.rb', line 11 def queue @queue end |