Esempio n. 1
0
        public ActorRef(SerializationInfo info, StreamingContext context)
        {
            var value = (string)info.GetValue("path", typeof(string));

            path     = ActorPath.Deserialize(value);
            endpoint = ActorEndpoint.Proxy(path);
        }
Esempio n. 2
0
        public ActorRef(SerializationInfo info, StreamingContext context)
        {
            var value = (string)info.GetValue("path", typeof(string));

            Path = ActorPath.Deserialize(value);
            var @interface = ActorInterface.Registered(Path.Type);

            endpoint = @interface.Proxy(Path);
        }
Esempio n. 3
0
 ActorRef(ActorPath path, IActorEndpoint endpoint)
     : this(path)
 {
     this.endpoint = endpoint;
     @interface    = ActorInterface.Of(path);
 }
Esempio n. 4
0
 ActorRef(ActorPath path, IActorEndpoint endpoint) : this(path)
 {
     this.endpoint = endpoint;
 }
Esempio n. 5
0
 ActorRef(ActorPath path, ActorInterface @interface)
     : this(path)
 {
     endpoint = @interface.Proxy(path);
 }
Esempio n. 6
0
 internal ActorRef(ActorPath path, IActorEndpoint endpoint, IActorRefInvoker invoker)
     : this(path)
 {
     this.endpoint = endpoint;
     this.invoker  = invoker;
 }