module Async::HTTP::Body::Reader

def read

Reads the entire request/response body.
def read
	if self.body
		self.body.join
	end
end