class Async::HTTP::Body::Hijack

def empty?

Has the producer called #finish and has the reader consumed the nil token?
def empty?
	if @stream
		@stream.empty?
	else
		false
	end
end