### sub json-rpc-find-method ```perl6 sub json-rpc-find-method( $obj, Str $method ) returns Method ``` Method looks up for a JSON-RPC method name C<$method> on object's hierarchy including roles. NAME ==== `Cro::RPC::JSON` - convinience shortcut for JSON-RPC 2.0 SYNOPSIS ======== use Cro::HTTP::Server; use Cro::HTTP::Router; use Cro::RPC::JSON; class JRPC-Actor is export { method foo ( Int :$a, Str :$b ) is json-rpc { return "$b and $a"; } proto method bar (|) is json-rpc { * } multi method bar ( Str :$a! ) { "single named Str param" } multi method bar ( Int $i, Num $n, Str $s ) { "Int, Num, Str positionals" } multi method bar ( *%options ) { [ "slurpy hash:", %options ] } method fail (|) is json-rpc { X::Cro::RPC::JSON::InvalidParams.new( msg => "I always fail" ).throw; } method mortal (|) is json-rpc { die "Simulate... well... something"; } method non-json (|) { "I won't be called!" } } sub routes is export { route { post -> "api" { my $actor = JRPC-Actor.new; json-rpc $actor; } post -> "api2" { json-rpc -> Cro::RPC::JSON::Request $jrpc-req { { to-user => "a string", num => pi } } } } } DESCRIPTION =========== Sorry, no description yet. Will write it soon. AUTHOR ====== Vadim Belman LICENSE ======= Artistic License 2.0 See the LICENSE file in this distribution.