class Protocol::HTTP::Body::Buffered

def length

The length of the body. Will compute and cache the length of the body, if it was not provided.
def length
	@length ||= @chunks.inject(0) {|sum, chunk| sum + chunk.bytesize}
end