# Copyright (C) 2016-2018 all contributors
# License: AGPL-3.0+
# only for PublicInbox::Daemon
package PublicInbox::ParentPipe;
use strict;
use warnings;
use base qw(PublicInbox::DS);
use fields qw(cb);
sub new ($$$) {
my ($class, $pipe, $cb) = @_;
my $self = fields::new($class);
$self->SUPER::new($pipe, PublicInbox::DS::EPOLLIN());
$self->{cb} = $cb;
$self;
}
sub event_step { $_[0]->{cb}->($_[0]) }
1;