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

def close(error = nil)

This method should only be called from within the context of the output task.
def close(error = nil)
	if @stream
		@stream.finish_output(error)
		@stream = nil
	end
end