public InstanceMappingFileMonitor(TimeSpan checkInterval, IAsyncTimer timer, IInstanceMappingLoader loader, EndpointInstances endpointInstances)
 {
     this.checkInterval     = checkInterval;
     this.timer             = timer;
     this.loader            = loader;
     this.endpointInstances = endpointInstances;
 }
コード例 #2
0
 public ValidatingInstanceMappingLoader(IInstanceMappingLoader loader, IInstanceMappingValidator validator)
 {
     this.loader    = loader;
     this.validator = validator;
 }