]> Sergey Matveev's repositories - public-inbox.git/blobdiff - lib/PublicInbox/OnDestroy.pm
No ext_urls
[public-inbox.git] / lib / PublicInbox / OnDestroy.pm
index 615bc450998beea1e82606db35c0d456450d966b..d9a6cd241becf48025f37f11389b94a4ee821396 100644 (file)
@@ -1,13 +1,16 @@
-# Copyright (C) 2020-2021 all contributors <meta@public-inbox.org>
+# Copyright (C) all contributors <meta@public-inbox.org>
 # License: AGPL-3.0+ <https://www.gnu.org/licenses/agpl-3.0.txt>
 
 package PublicInbox::OnDestroy;
+use v5.12;
 
 sub new {
        shift; # ($class, $cb, @args)
        bless [ @_ ], __PACKAGE__;
 }
 
+sub cancel { @{$_[0]} = () }
+
 sub DESTROY {
        my ($cb, @args) = @{$_[0]};
        if (!ref($cb) && $cb) {