Exemplo n.º 1
0
        public Fixture(IServiceProvider services = null)
        {
            var proxifier = new Func <AbstractKey, IGrain>(
                key => (IGrain)GrainProxy.Proxify(this, key));                    //just needs dispatcher and serializer

            Exceptions   = new ExceptionSink();
            Scheduler    = new FixtureScheduler(Exceptions);
            Serializer   = new FakeSerializer(proxifier);
            Types        = new TypeMap();
            GrainFactory = new FakeGrainFactory(Types, proxifier);
            Requests     = new RequestRunner(Scheduler, Exceptions);
            Services     = new ServiceRegistry(services);
            Stores       = new StorageRegistry(Serializer);
            Providers    = new ProviderRegistry(() => new ProviderRuntimeAdaptor(GrainFactory, Services, null));

            Reminders = new ReminderRegistry(this);

            Placer = new Placer(Types.GetConcreteType);

            Activations = null;

            var activationHub = new ActivationHub(place => {
                var actSite = new ActivationSite(p => new Activation_New(this, p).Dispatcher);                             //!!!
                actSite.Init(place);
                return(actSite);
            });

            Placer = new Placer(Types.GetConcreteType);

            Dispatcher = new Dispatcher(Placer.Place, activationHub);
            Streams    = new StreamRegistry(activationHub, Exceptions, Types);
        }
Exemplo n.º 2
0
 public RequestRunner(TaskScheduler scheduler, ExceptionSink exceptionSink, RequestRunner outerReqs = null, bool isolate = false)
 {
     _scheduler                 = scheduler;
     _exceptionSink             = exceptionSink;
     _outerReqs                 = outerReqs;
     _whenIdleTaskSources       = new Queue <TaskCompletionSource <bool> >();
     _whenInnerClearTaskSources = new Queue <TaskCompletionSource <bool> >();
     _whenClosedTaskSources     = new Queue <TaskCompletionSource <bool> >();
     _defaultIsolation          = isolate;
 }