DOKK / manpages / debian 10 / libjson-rpc-perl / JSON::RPC::Dispatch.3pm.en
JSON::RPC::Dispatch(3pm) User Contributed Perl Documentation JSON::RPC::Dispatch(3pm)

JSON::RPC::Dispatch - Dispatch JSON RPC Requests To Handlers

    use JSON::RPC::Dispatch;
    my $router = Router::Simple->new; # or use Router::Simple::Declare
    $router->connect( method_name => {
        handler => $class_name_or_instance,
        action  => $method_name_to_invoke
    );
    my $dispatch = JSON::RPC::Dispatch->new(
        router => $router
    );
    sub psgi_app {
        $dispatch->handle_psgi( $env );
    }

See docs in JSON::RPC for details

2015-06-12 perl v5.20.2