コード例 #1
0
ファイル: GraphSourceRunnable.cs プロジェクト: lanicon/nesper
 public GraphSourceRunnable(
     AgentInstanceContext agentInstanceContext,
     DataFlowSourceOperator graphSource,
     string dataFlowName,
     string instanceId,
     string operatorName,
     int operatorNumber,
     string operatorPrettyPrint,
     EPDataFlowExceptionHandler optionalExceptionHandler,
     bool audit)
 {
     _agentInstanceContext = agentInstanceContext;
     _graphSource = graphSource;
     _dataFlowName = dataFlowName;
     _instanceId = instanceId;
     _operatorName = operatorName;
     _operatorNumber = operatorNumber;
     _operatorPrettyPrint = operatorPrettyPrint;
     _optionalExceptionHandler = optionalExceptionHandler;
     _audit = audit;
 }
コード例 #2
0
ファイル: GraphSourceRunnable.cs プロジェクト: ikvm/nesper
 public GraphSourceRunnable(
     String engineURI,
     String statementName,
     DataFlowSourceOperator graphSource,
     String dataFlowName,
     String operatorName,
     int operatorNumber,
     String operatorPrettyPrint,
     EPDataFlowExceptionHandler optionalExceptionHandler,
     bool audit)
 {
     _engineUri                = engineURI;
     _statementName            = statementName;
     _graphSource              = graphSource;
     _dataFlowName             = dataFlowName;
     _operatorName             = operatorName;
     _operatorNumber           = operatorNumber;
     _operatorPrettyPrint      = operatorPrettyPrint;
     _optionalExceptionHandler = optionalExceptionHandler;
     _audit = audit;
 }