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

JSON::RPC::Parser - Parse JSON RPC Requests from Plack::Request

SYNOPSIS

use JSON::RPC::Parser;

my $parser = JSON::RPC::Parser->new(
    coder => JSON->new
);
my $procedure = $parser->construct_from_req( $request );

DESCRIPTION

Constructs a JSON::RPC::Procedure object from a Plack::Request object