class Async::HTTP::Body::Writable

def write(chunk)

Write a single chunk to the body. Signal completion by calling `#finish`.
def write(chunk)
	if @stopped
		raise @stopped
	end
	
	# TODO should this yield if the queue is full?
	
	@count += 1
	@queue.enqueue(chunk)
end