Beispiel #1
0
        public static void Reset()
        {
            ResetThis();

            ActorInterface.Reset();
            ActorPrototype.Reset();
            ActorEndpointFactory.Reset();
            StreamProvider.Reset();
            Ref.Reset();
        }
Beispiel #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);
        }
Beispiel #3
0
        public static void Reset()
        {
            ResetThis();

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

            Ref.Reset();
            StreamSubscriptionMatcher.Reset();
        }
Beispiel #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);
        }
Beispiel #5
0
 internal static IActorEndpoint Proxy(ActorPath path)
 {
     return(ActorEndpointFactory.Proxy(path));
 }
Beispiel #6
0
 internal static ActorEndpointInvoker Invoker(ActorPath path)
 {
     return(ActorEndpointFactory.Invoker(path.RuntimeType()));
 }