/// <summary>
 ///     Ctor.
 /// </summary>
 /// <param name="services">runtime services</param>
 /// <param name="runtime">runtime to process</param>
 /// <param name="handleCallback">callback</param>
 public TimerUnitSingleStaged(
     StageSpecificServices services,
     EPStageEventServiceImpl runtime,
     EPStatementHandleCallbackSchedule handleCallback)
 {
     this.services = services;
     this.runtime = runtime;
     this.handleCallback = handleCallback;
 }
Exemple #2
0
 /// <summary>
 ///     Ctor.
 /// </summary>
 /// <param name="services">runtime services</param>
 /// <param name="runtime">runtime to process</param>
 /// <param name="handle">statement handle</param>
 /// <param name="callbackObject">callback list</param>
 public TimerUnitMultipleStaged(
     StageSpecificServices services,
     EPStageEventServiceImpl runtime,
     EPStatementAgentInstanceHandle handle,
     object callbackObject)
 {
     this.services = services;
     this.handle = handle;
     this.runtime = runtime;
     this.callbackObject = callbackObject;
 }