Пример #1
0
 public EPDeploymentAdminImpl(
     EPAdministratorSPI epService,
     ILockManager lockManager,
     IReaderWriterLock eventProcessingRWLock,
     IResourceManager resourceManager,
     DeploymentStateService deploymentStateService,
     StatementEventTypeRef statementEventTypeRef,
     EventAdapterService eventAdapterService,
     StatementIsolationService statementIsolationService,
     FilterService filterService,
     TimeZoneInfo timeZone,
     ConfigurationEngineDefaults.UndeployRethrowPolicy undeployRethrowPolicy)
 {
     _iLock                     = lockManager.CreateDefaultLock();
     _epService                 = epService;
     _resourceManager           = resourceManager;
     _eventProcessingRwLock     = eventProcessingRWLock;
     _deploymentStateService    = deploymentStateService;
     _statementEventTypeRef     = statementEventTypeRef;
     _eventAdapterService       = eventAdapterService;
     _statementIsolationService = statementIsolationService;
     _filterService             = filterService;
     _timeZone                  = timeZone;
     _undeployRethrowPolicy     = undeployRethrowPolicy;
 }
Пример #2
0
 /// <summary>
 /// Ctor.
 /// </summary>
 /// <param name="epService">administrative SPI</param>
 /// <param name="deploymentStateService">deployment state maintenance service</param>
 /// <param name="statementEventTypeRef">maintains statement-eventtype relationship</param>
 /// <param name="eventAdapterService">event wrap service</param>
 /// <param name="statementIsolationService">for isolated statement execution</param>
 /// <param name="optionalStatementIdGenerator">The optional statement id generator.</param>
 /// <param name="filterService">The filter service.</param>
 /// <param name="timeZone">The time zone.</param>
 public EPDeploymentAdminImpl(EPAdministratorSPI epService,
                              DeploymentStateService deploymentStateService,
                              StatementEventTypeRef statementEventTypeRef,
                              EventAdapterService eventAdapterService,
                              StatementIsolationService statementIsolationService,
                              FilterService filterService,
                              TimeZoneInfo timeZone,
                              ConfigurationEngineDefaults.UndeployRethrowPolicy undeployRethrowPolicy)
 {
     _epService = epService;
     _deploymentStateService    = deploymentStateService;
     _statementEventTypeRef     = statementEventTypeRef;
     _eventAdapterService       = eventAdapterService;
     _statementIsolationService = statementIsolationService;
     _filterService             = filterService;
     _timeZone = timeZone;
     _undeployRethrowPolicy = undeployRethrowPolicy;
 }