protected ExCommsServiceInfo(IExecutorService executorService,
                              ExCommsHostingModuleType moduleType,
                              IEnumerable <IExCommsServerHostFactoryActivator> activators)
     : base(executorService)
 {
     _factory = new ExCommsServerHostFactoryActivatorFactory(executorService, moduleType, activators);
 }
 protected ExCommsServiceInfo(IExecutorService executorService,
     ExCommsHostingModuleType moduleType,
     IEnumerable<IExCommsServerHostFactoryActivator> activators)
     : base(executorService)
 {
     _factory = new ExCommsServerHostFactoryActivatorFactory(executorService, moduleType, activators);
 }
Ejemplo n.º 3
0
 public ExCommsServerHostFactoryActivatorFactory(IExecutorService executorService,
                                                 ExCommsHostingModuleType moduleType,
                                                 IEnumerable <IExCommsServerHostFactoryActivator> activators)
     : base(executorService)
 {
     ExCommsHostingModuleTypeHelper.Current.ModuleType = moduleType;
     _activators = activators;
     _current    = this;
 }
 public ExCommsServiceInfo_CommunicationServer(IExecutorService executorService, ExCommsHostingModuleType moduleType, IEnumerable<IExCommsServerHostFactoryActivator> activators)
     : base(executorService, moduleType, activators)
 {
 }
 public ExCommsServiceInfo_MonitorServer_Processor(IExecutorService executorService, ExCommsHostingModuleType moduleType, IEnumerable<IExCommsServerHostFactoryActivator> activators)
     : base(executorService, moduleType, activators)
 {
 }
 public ExCommsServerHostFactoryActivatorFactory(IExecutorService executorService,
     ExCommsHostingModuleType moduleType,
     IEnumerable<IExCommsServerHostFactoryActivator> activators)
     : base(executorService)
 {
     ExCommsHostingModuleTypeHelper.Current.ModuleType = moduleType;
     _activators = activators;
     _current = this;
 }
 public ExCommsServiceInfo_All(IExecutorService executorService, ExCommsHostingModuleType moduleType, IEnumerable <IExCommsServerHostFactoryActivator> activators)
     : base(executorService, moduleType, activators)
 {
 }
Ejemplo n.º 8
0
 public ExCommsHostingModuleTypeHelper(ExCommsHostingModuleType moduleType)
 {
     this.ModuleType = moduleType;
 }