class Async::HTTP::Protocol::HTTP2::Output
def passthrough(task)
def passthrough(task) task.annotate("Writing #{@body} to #{@stream}.") while chunk = @body&.read self.write(chunk) # TODO this reduces memory usage? # chunk.clear unless chunk.frozen? # GC.start end self.close ensure @body&.close($!) @body = nil end