class Async::HTTP::Body::Stream

def read_next

def read_next
	if chunk = @input&.read
		return chunk
	else
		@input = nil
		return nil
	end
end