class Async::HTTP::Body::Writable

def read

Read the next available chunk.
def read
	return if @finished
	
	unless chunk = @queue.dequeue
		@finished = true
	end
	
	return chunk
end