Beispiel #1
0
 public ExecutableRunnerServiceHandler(IActivatorWrapper activationWrapper, IReflectionWrapper reflectionWrapper,
                                       IAssemblyLoader assemblyLoader, IStaticLoader loader, ExecutorPool pool, IHostApplicationLifetime lifetime)
     : base(loader, pool, lifetime)
 {
     this._activatorWrapper  = activationWrapper;
     this._reflectionWrapper = reflectionWrapper;
     this._assemblyLoader    = assemblyLoader;
     _stepRegistry           = assemblyLoader.GetStepRegistry();
     InitializeExecutionMessageHandlers();
 }
 public RunnerServiceHandler(IActivatorWrapper activationWrapper, IReflectionWrapper reflectionWrapper, IAssemblyLoader assemblyLoader, IStaticLoader loader, Server server)
 {
     this._loader            = loader;
     this._server            = server;
     this._activatorWrapper  = activationWrapper;
     this._reflectionWrapper = reflectionWrapper;
     this._assemblyLoader    = assemblyLoader;
     _stepRegistry           = assemblyLoader.GetStepRegistry();
     this.InitializeMessageProcessors();
 }