class Async::HTTP::Protocol::HTTP2::Stream::Output
def passthrough(task)
def passthrough(task) task.annotate("Writing #{@body} to #{@stream}.") while chunk = @body&.read self.write(chunk) end self.close_write rescue Async::Stop # Ignore. ensure @body&.close($!) @body = nil end