The London Perl and Raku Workshop takes place on 26th Oct 2024. If your company depends on Perl, please consider sponsoring and/or attending.

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