class Async::HTTP::BufferedBody

def initialize(body)

def initialize(body)
	@chunks = []
	
	body.each do |chunk|
		@chunks << chunk
	end
end