Sponsoring The Perl Toolchain Summit 2025: Help make this important event another success Learn more

NAME

Dancer2::RPCPlugin::DispatchItem - Small object to handle dispatch-table items

SYNOPSIS

jsonrpc '/json' => {
publish => sub {
return {
'system.ping' => Dancer2::RPCPlugin::DispatchItem->new(
code => MyProject::Module1->can('sub1'),
package => 'Myproject::Module1',
),
};
},
};

DESCRIPTION

Dancer2::RPCPlugin::DispatchItem->new(%arguments)

Parameters

Named:

code => $code_ref [Required]
package => $package [Required]]

$di->code

Getter for the code attibute.

$di->package

Getter for the package attribute

COPYRIGHT

© MMXXII - Abe Timmerman <abetim@cpan.org>