Class: AMQ::Protocol::Exchange::Unbind
- Defined in:
- lib/amq/protocol/client.rb
Class Method Summary collapse
-
.encode(channel, destination, source, routing_key, nowait, arguments) ⇒ Object
[u’ticket = 0’, u’destination = nil’, u’source = nil’, u’routing_key = EMPTY_STRING’, u’nowait = false’, u’arguments = {}‘].
- .has_content? ⇒ Boolean
Methods inherited from Method
encode_body, index, inherited, instantiate, method_id, methods, name, split_headers
Class Method Details
.encode(channel, destination, source, routing_key, nowait, arguments) ⇒ Object
- u’ticket = 0’, u’destination = nil’, u’source = nil’, u’routing_key = EMPTY_STRING’, u’nowait = false’, u’arguments = {}‘
1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 |
# File 'lib/amq/protocol/client.rb', line 1012 def self.encode(channel, destination, source, routing_key, nowait, arguments) ticket = 0 buffer = '' buffer << @packed_indexes buffer << [ticket].pack(PACK_UINT16) buffer << destination.to_s.bytesize.chr buffer << destination.to_s buffer << source.to_s.bytesize.chr buffer << source.to_s buffer << routing_key.to_s.bytesize.chr buffer << routing_key.to_s bit_buffer = 0 bit_buffer = bit_buffer | (1 << 0) if nowait buffer << [bit_buffer].pack(PACK_CHAR) buffer << AMQ::Protocol::Table.encode(arguments) MethodFrame.new(buffer, channel) end |
.has_content? ⇒ Boolean
1006 1007 1008 |
# File 'lib/amq/protocol/client.rb', line 1006 def self.has_content? false end |