class Protocol::HTTP::Body::Rewindable

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
	Buffered.new(@chunks)
end