about summary refs log tree commit homepage
path: root/lib/PublicInbox/Inbox.pm
diff options
context:
space:
mode:
Diffstat (limited to 'lib/PublicInbox/Inbox.pm')
-rw-r--r--lib/PublicInbox/Inbox.pm20
1 files changed, 20 insertions, 0 deletions
diff --git a/lib/PublicInbox/Inbox.pm b/lib/PublicInbox/Inbox.pm
index af034358..b250bef3 100644
--- a/lib/PublicInbox/Inbox.pm
+++ b/lib/PublicInbox/Inbox.pm
@@ -391,4 +391,24 @@ sub altid_map ($) {
         } // {};
 }
 
+# $obj must respond to ->on_inbox_unlock, which takes Inbox ($self) as an arg
+sub subscribe_unlock {
+        my ($self, $ident, $obj) = @_;
+        $self->{unlock_subs}->{$ident} = $obj;
+}
+
+sub unsubscribe_unlock {
+        my ($self, $ident) = @_;
+        delete $self->{unlock_subs}->{$ident};
+}
+
+# called by inotify
+sub on_unlock {
+        my ($self) = @_;
+        my $subs = $self->{unlock_subs} or return;
+        for (values %$subs) {
+                eval { $_->on_inbox_unlock($self) };
+        }
+}
+
 1;