Async::ActorSourceAsyncActor

module Actor

Nested

Definitions

def self.new(instance)

Create a new actor proxy for the given instance.

Signature

parameter instance Object

The target object to wrap in an actor proxy.

returns Proxy

A new proxy that executes methods asynchronously.

Implementation

def self.new(instance)
	Proxy.new(instance)
end