コード例 #1
0
ファイル: QueueManager.cs プロジェクト: udbeeq5566/ESB
 /// <summary>
 /// Initializes a new instance of the <see cref="QueueManager"/> class.
 /// </summary>
 /// <param name="instanceName">Name of the instance.</param>
 /// <param name="operationsFactory">The operations factory.</param>
 /// <param name="counters">The counters.</param>
 /// <param name="config">The configuration.</param>
 /// <param name="dataAccessFactory">The data access factory.</param>
 /// <param name="errorHandler">The error handler.</param>
 /// <param name="eventLog">The event log.</param>
 public QueueManager(string instanceName, IServiceOperationsFactory operationsFactory, IQueuePerformanceCounters counters, IQueueConfiguration config, IQueueDataAccessFactory dataAccessFactory,
     ErrorHandler errorHandler, IMyEventLog eventLog)
 {
     _handler = null;
     _timers = new TimerBasedExecutionEngine[0];
     _specialTransitionsLock = new object();
     _specialTransitions = new Dictionary<Guid, AsyncHandlerEarlyExitRequest>();
     InstanceName = DecorateInstanceName(instanceName);
     Counters = counters;
     Configuration = config;
     ShuttingDown = false;
     _shutdownEvent = null;
     _disposed = false;
     _dataAccessFactory = dataAccessFactory;
     _errorHandler = errorHandler;
     EventLog = eventLog;
     OperationsFactory = operationsFactory;
 }
コード例 #2
0
ファイル: AsyncService.cs プロジェクト: udbeeq5566/ESB
 /// <summary>
 /// Initializes the service components.
 /// </summary>
 private void InitializeServiceComponents()
 {
     this.OperationsFactory = ServiceOperationsFactory.Create(this);
 }