Ejemplo n.º 1
0
 /// <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;
 }
Ejemplo n.º 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;
 }
Ejemplo n.º 3
0
 /// <summary>
 ///     Ctor.
 /// </summary>
 /// <param name="epRuntime">runtime to process</param>
 /// <param name="handleCallback">callback</param>
 /// <param name="theEvent">event</param>
 /// <param name="filterVersion">version of filter</param>
 public RouteUnitSingleStaged(
     EPStageEventServiceImpl epRuntime,
     EPStatementHandleCallbackFilter handleCallback,
     EventBean theEvent,
     long filterVersion)
 {
     this.epRuntime = epRuntime;
     this.theEvent = theEvent;
     this.handleCallback = handleCallback;
     this.filterVersion = filterVersion;
 }
Ejemplo n.º 4
0
 /// <summary>
 /// Ctor.
 /// </summary>
 /// <param name="epRuntime">runtime to process</param>
 /// <param name="callbackList">callback list</param>
 /// <param name="theEvent">event to pass</param>
 /// <param name="handle">statement handle</param>
 /// <param name="filterVersion">version of filter</param>
 public RouteUnitMultipleStaged(
     EPStageEventServiceImpl epRuntime,
     object callbackList,
     EventBean theEvent,
     EPStatementAgentInstanceHandle handle,
     long filterVersion)
 {
     this.epRuntime     = epRuntime;
     this.callbackList  = callbackList;
     this.theEvent      = theEvent;
     this.handle        = handle;
     this.filterVersion = filterVersion;
 }