class Async::HTTP::Body::Writable

def write(chunk)

Write a single chunk to the body. Signal completion by calling `#finish`.
def write(chunk)
	# If the reader breaks, the writer will break.
	# The inverse of this is less obvious (*)
	if @stopped
		raise @stopped
	end
	
	# TODO should this yield if the queue is full?
	
	@count += 1
	@queue.enqueue(chunk)
end