The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Ukigumo::Client::Notify::Callback - send notification by callback

DESCRIPTION

This is a notifier class for Ukigumo, send notification by callback

SYNOPSIS

    use Ukigumo::Client::Notify::Callback;

    my $app = Ukigumo::Client->new(...);
    $app->push_notifier(
        Ukigumo::Client::Notify::Callback->new(
            send_cb => sub {
                my ($c, $status, $last_status, $report_url) = @_;
                ...
            },
        )
    );

ATTRIBUTES

send_cb