Class: ActiveMessaging::Adapters::AmazonSqs::Subscription

Inherits:
Object
  • Object
show all
Defined in:
lib/activemessaging/adapters/asqs.rb

Instance Attribute Summary collapse

Instance Method Summary collapse

Constructor Details

#initialize(destination, headers = {}, count = 1) ⇒ Subscription

Returns a new instance of Subscription.



424
425
426
427
# File 'lib/activemessaging/adapters/asqs.rb', line 424

def initialize(destination, headers={}, count=1)
  @priority = headers.delete(:priority) || 1001
  @destination, @headers, @count = destination, headers, count
end

Instance Attribute Details

#countObject

Returns the value of attribute count.



422
423
424
# File 'lib/activemessaging/adapters/asqs.rb', line 422

def count
  @count
end

#destinationObject

Returns the value of attribute destination.



422
423
424
# File 'lib/activemessaging/adapters/asqs.rb', line 422

def destination
  @destination
end

#headersObject

Returns the value of attribute headers.



422
423
424
# File 'lib/activemessaging/adapters/asqs.rb', line 422

def headers
  @headers
end

#priorityObject

Returns the value of attribute priority.



422
423
424
# File 'lib/activemessaging/adapters/asqs.rb', line 422

def priority
  @priority
end

Instance Method Details

#addObject



429
430
431
# File 'lib/activemessaging/adapters/asqs.rb', line 429

def add
  @count += 1
end

#removeObject



433
434
435
# File 'lib/activemessaging/adapters/asqs.rb', line 433

def remove
  @count -= 1
end