Class: AMQ::Protocol::Queue::Purge
- Defined in:
- lib/amq/protocol/client.rb
Class Method Summary collapse
-
.encode(channel, queue, nowait) ⇒ Object
[u’ticket = 0’, u’queue = EMPTY_STRING’, u’nowait = false’].
- .has_content? ⇒ Boolean
Methods inherited from Method
encode_body, index, inherited, instantiate, method_id, methods, name, split_headers
Class Method Details
.encode(channel, queue, nowait) ⇒ Object
- u’ticket = 0’, u’queue = EMPTY_STRING’, u’nowait = false’
1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 |
# File 'lib/amq/protocol/client.rb', line 1148 def self.encode(channel, queue, nowait) ticket = 0 buffer = @packed_indexes.dup buffer << [ticket].pack(PACK_UINT16) buffer << queue.to_s.bytesize.chr buffer << queue.to_s bit_buffer = 0 bit_buffer = bit_buffer | (1 << 0) if nowait buffer << [bit_buffer].pack(PACK_CHAR) MethodFrame.new(buffer, channel) end |
.has_content? ⇒ Boolean
1142 1143 1144 |
# File 'lib/amq/protocol/client.rb', line 1142 def self.has_content? false end |