# File lib/amqp/channel.rb, line 816
    def check_content_completion
      if @body.length >= @header.size
        @header.properties.update(@method.arguments)
        @consumer.receive @header, @body if @consumer
        @body = @header = @consumer = @method = nil
      end
    end