class Protobuf::Rpc::Service

def callable_rpc_method(method_name)


is why we wrap the method call).
The returned lambda is expected to be called at a later time (which
to invoke the specified rpc method. Facilitates callback dispatch.
Get a callable object that will be used by the dispatcher
def callable_rpc_method(method_name)
  lambda { run_filters(method_name) }
end