module Protocol::HTTP::Body::Reader

def finish

@returns [Buffered] buffers the entire body.

Gracefully finish reading the body. This will buffer the remainder of the body.
def finish
	if @body
		body = @body.finish
		@body = nil
		
		return body
	end
end