class Protocol::HTTP::Body::Buffered

def buffered

@returns [Buffered] the buffered body.

A rewindable body wraps some other body. Convert it to a buffered body. The buffered body will share the same chunks as the rewindable body.
def buffered
	self.class.new(@chunks)
end