Parent

Class Index [+]

Quicksearch

AMQ::Protocol::GetResponse

Attributes

method[R]

Public Class Methods

new(method) click to toggle source
    # File lib/amq/protocol/get_response.rb, line 8
 8:       def initialize(method)
 9:         @method = method
10:       end

Public Instance Methods

cluster_id() click to toggle source

GetEmpty attributes

    # File lib/amq/protocol/get_response.rb, line 48
48:       def cluster_id
49:         if @method.respond_to?(:cluster_id)
50:           @method.cluster_id
51:         end
52:       end
delivery_tag() click to toggle source

GetOk attributes

    # File lib/amq/protocol/get_response.rb, line 17
17:       def delivery_tag
18:         if @method.respond_to?(:delivery_tag)
19:           @method.delivery_tag
20:         end
21:       end
empty?() click to toggle source
    # File lib/amq/protocol/get_response.rb, line 12
12:       def empty?
13:         @method.is_a?(::AMQ::Protocol::Basic::GetEmpty)
14:       end
exchange() click to toggle source
    # File lib/amq/protocol/get_response.rb, line 29
29:       def exchange
30:         if @method.respond_to?(:exchange)
31:           @method.exchange
32:         end
33:       end
message_count() click to toggle source
    # File lib/amq/protocol/get_response.rb, line 41
41:       def message_count
42:         if @method.respond_to?(:message_count)
43:           @method.message_count
44:         end
45:       end
redelivered() click to toggle source
    # File lib/amq/protocol/get_response.rb, line 23
23:       def redelivered
24:         if @method.respond_to?(:redelivered)
25:           @method.redelivered
26:         end
27:       end
routing_key() click to toggle source
    # File lib/amq/protocol/get_response.rb, line 35
35:       def routing_key
36:         if @method.respond_to?(:routing_key)
37:           @method.routing_key
38:         end
39:       end

Disabled; run with --debug to generate this.

[Validate]

Generated with the Darkfish Rdoc Generator 1.1.6.