class PbActor::AsyncProxy

Public Instance Methods

method_missing(method, *args, &blk) click to toggle source
Calls superclass method
# File lib/pb_actor/async_proxy.rb, line 3
def method_missing method, *args, &blk
  super
  Message.send [:async_method_call, nil, method, *args], @wr
  nil
end