# File lib/amq/protocol/client.rb, line 678
        def self.decode(data)
          offset = 0
          bit_buffer = data[offset, 1].unpack(PACK_CHAR).first
          offset += 1
          active = (bit_buffer & (1 << 0)) != 0
          self.new(active)
        end