logo
Free, unlimited AI code reviews that run on commit
git-lrc git-lrc GitHub Install Now We'd appreciate a star git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt git-lrc - Free, unlimited AI code reviews that run on commit | Product Hunt

JSON::RPC::Common::Procedure::Call::Version_1_1 - JSON-RPC 1.1 Procedure Call

Author

       Yuval Kogman <nothingmuch@woobling.org>

Description

       This class implements JSON-RPC 1.1 Procedure Calls according to the 1.1 working draft:
       <http://json-rpc.org/wd/JSON-RPC-1-1-WD-20060807.html>.

       JSON RPC 1.1 requests are never notifications, and accept either hash references or array references as
       parameters.

       Note that the alternative JSON RPC 1.1 proposition is also be supported:
       <http://groups.google.com/group/json-rpc/web/json-rpc-1-1-alt>. "kwparams" is accepted as an alias to
       "params", but "params" will also accept hash references. However, to simplify things, "params" and
       "kwparams" are mutually exclusive, since Perl doesn't have strong support for named params.

       The alternative spec does not offer notifications (it is a TODO item), so currently "is_notification"
       always returns false.

Name

       JSON::RPC::Common::Procedure::Call::Version_1_1 - JSON-RPC 1.1 Procedure Call

Synopsis

               use JSON::RPC::Common::Procedure::Call;

               my $req = JSON::RPC::Common::Procedure::Call->inflate({
                       version => "1.1",
                       id      => "oink",
                       params  => { foo => "bar" },
               });

Version

       version 0.11

See Also