Esempio n. 1
0
        public static void Reset()
        {
            ResetThis();

            ActorInterface.Reset();
            ActorPrototype.Reset();
            ActorEndpointFactory.Reset();
            StreamProvider.Reset();
            Ref.Reset();
        }
Esempio n. 2
0
        static void Register(Type actor)
        {
            var type = RegisterThis(actor);

            ActorInterface.Register(type);
            ActorPrototype.Register(type);
            ActorEndpointFactory.Register(type);
            StreamProvider.Register(type);
            Ref.Register(type);
        }
Esempio n. 3
0
        public static void Reset()
        {
            ResetThis();

            ActorInterface.Reset();
            ActorPrototype.Reset();
            ActorEndpointFactory.Reset();

            Ref.Reset();
            StreamSubscriptionMatcher.Reset();
        }
Esempio n. 4
0
        static void Register(Type actor)
        {
            var type = RegisterThis(actor);

            ActorInterface.Register(type);
            ActorPrototype.Register(type);
            ActorEndpointFactory.Register(type);

            Ref.Register(type);
            StreamSubscriptionMatcher.Register(type);
        }
Esempio n. 5
0
 internal static IActorEndpoint Proxy(ActorPath path)
 {
     return(ActorEndpointFactory.Proxy(path));
 }
Esempio n. 6
0
 internal static ActorEndpointInvoker Invoker(ActorPath path)
 {
     return(ActorEndpointFactory.Invoker(path.RuntimeType()));
 }