class Async::HTTP::Protocol::HTTP2::Stream::Output

def start(parent: Task.current)

def start(parent: Task.current)
	if @body.respond_to?(:call)
		@task = parent.async(&self.method(:stream))
	else
		@task = parent.async(&self.method(:passthrough))
	end
end