class Protocol::HTTP::Body::Rewindable

def initialize(body)

@parameter body [Readable] the body to wrap.

Initialize the body with the given body.
def initialize(body)
	super(body)
	
	@chunks = []
	@index = 0
end