module Async::HTTP::Body::Reader

def finish

Returns:
  • (Buffered) - buffers the entire body.
def finish
	if @body
		body = @body.finish
		@body = nil
		
		return body
	end
end