class RedisRPC::FunctionCall

Attributes

args[R]
method[R]

Public Class Methods

new(args={}) click to toggle source
# File lib/redisrpc.rb, line 34
def initialize(args={})
    @method = args['name'].to_sym
    @args = args['args']
end