Class: Bunny::DeliveryInfo

Inherits:
Object
  • Object
show all
Includes:
Enumerable
Defined in:
lib/bunny/delivery_info.rb

Overview

Wraps [AMQ::Protocol::Basic::Deliver] to provide access to the delivery properties as immutable hash as well as methods. Hash representation is created lazily.

Instance Attribute Summary collapse

Instance Method Summary collapse

Instance Attribute Details

#channelBunny::Channel (readonly)

Returns Channel this delivery is on.

Returns:



22
23
24
# File 'lib/bunny/delivery_info.rb', line 22

def channel
  @channel
end

#consumerBunny::Consumer (readonly)

Returns Consumer this delivery is for.

Returns:



20
21
22
# File 'lib/bunny/delivery_info.rb', line 20

def consumer
  @consumer
end

Instance Method Details

#[](k) ⇒ Object

Accesses delivery properties by key

See Also:

  • Hash#[]


39
40
41
42
43
44
45
46
47
48
49
50
# File 'lib/bunny/delivery_info.rb', line 39

def [](k)
  case k
  when :consumer_tag then @basic_deliver.consumer_tag
  when :delivery_tag then @basic_deliver.delivery_tag
  when :redelivered  then @basic_deliver.redelivered
  when :exchange     then @basic_deliver.exchange
  when :routing_key  then @basic_deliver.routing_key
  when :consumer     then @consumer
  when :channel      then @channel
  else nil
  end
end

#consumer_tagString

Returns Consumer tag this delivery is for.

Returns:

  • (String)

    Consumer tag this delivery is for



76
77
78
# File 'lib/bunny/delivery_info.rb', line 76

def consumer_tag
  @basic_deliver.consumer_tag
end

#delivery_tagString

Returns Delivery identifier that is used to acknowledge, reject and nack deliveries.

Returns:

  • (String)

    Delivery identifier that is used to acknowledge, reject and nack deliveries



81
82
83
# File 'lib/bunny/delivery_info.rb', line 81

def delivery_tag
  @basic_deliver.delivery_tag
end

#each(*args, &block) ⇒ Object

Iterates over delivery properties

See Also:

  • Enumerable#each


33
34
35
# File 'lib/bunny/delivery_info.rb', line 33

def each(*args, &block)
  to_hash.each(*args, &block)
end

#exchangeString

Returns Name of the exchange this message was published to.

Returns:

  • (String)

    Name of the exchange this message was published to



92
93
94
# File 'lib/bunny/delivery_info.rb', line 92

def exchange
  @basic_deliver.exchange
end

#redeliveredBoolean Also known as: redelivered?

Returns true if this delivery is a redelivery (the message was requeued at least once).

Returns:

  • (Boolean)

    true if this delivery is a redelivery (the message was requeued at least once)



86
87
88
# File 'lib/bunny/delivery_info.rb', line 86

def redelivered
  @basic_deliver.redelivered
end

#routing_keyString

Returns Routing key this message was published with.

Returns:

  • (String)

    Routing key this message was published with



97
98
99
# File 'lib/bunny/delivery_info.rb', line 97

def routing_key
  @basic_deliver.routing_key
end

#to_hashHash

Returns Hash representation of this delivery info.

Returns:

  • (Hash)

    Hash representation of this delivery info



53
54
55
56
57
58
59
60
61
62
63
# File 'lib/bunny/delivery_info.rb', line 53

def to_hash
  @hash ||= {
    :consumer_tag => @basic_deliver.consumer_tag,
    :delivery_tag => @basic_deliver.delivery_tag,
    :redelivered  => @basic_deliver.redelivered,
    :exchange     => @basic_deliver.exchange,
    :routing_key  => @basic_deliver.routing_key,
    :consumer     => @consumer,
    :channel      => @channel
  }
end