class Elrpc::CallMessage

送信用データクラス キューに入れるために使う

Attributes

args[R]
block[R]
method[R]
uid[R]

Public Class Methods

new(uid, method, args, block) click to toggle source
# File lib/elrpc.rb, line 221
def initialize(uid, method, args, block)
  @uid = uid
  @method = method
  @args = args
  @block = block
end

Public Instance Methods

to_ast() click to toggle source
# File lib/elrpc.rb, line 228
def to_ast
  [:call, @uid, @method, @args]
end