class Async::HTTP::Body::Hijack

def read

Read the next available chunk.
def read
	unless @task
		@stream = Stream.new(@input)
		
		@task = Task.current.async do
			@block.call(@stream)
		end
	end
	
	return @stream.output.read
end