本文整理匯總了Java中com.espertech.esper.client.dataflow.EPDataFlowExecutionException類的典型用法代碼示例。如果您正苦於以下問題:Java EPDataFlowExecutionException類的具體用法?Java EPDataFlowExecutionException怎麽用?Java EPDataFlowExecutionException使用的例子?那麽, 這裏精選的類代碼示例或許可以為您提供幫助。
EPDataFlowExecutionException類屬於com.espertech.esper.client.dataflow包,在下文中一共展示了EPDataFlowExecutionException類的3個代碼示例,這些例子默認根據受歡迎程度排序。您可以為喜歡或者感覺有用的代碼點讚,您的評價將有助於係統推薦出更棒的Java代碼示例。
示例1: tryInvalidRun
import com.espertech.esper.client.dataflow.EPDataFlowExecutionException; //導入依賴的package包/類
private void tryInvalidRun(String dataflowName, String epl, String message) {
EPStatement stmtGraph = epService.getEPAdministrator().createEPL(epl);
DefaultSupportCaptureOp<Object> outputOp = new DefaultSupportCaptureOp<Object>();
EPDataFlowInstance df = epService.getEPRuntime().getDataFlowRuntime().instantiate(dataflowName,
new EPDataFlowInstantiationOptions().operatorProvider(new DefaultSupportGraphOpProvider(outputOp)));
try {
df.run();
fail();
} catch (EPDataFlowExecutionException ex) {
assertEquals(message, ex.getMessage());
}
stmtGraph.destroy();
}
示例2: tryInvalidRun
import com.espertech.esper.client.dataflow.EPDataFlowExecutionException; //導入依賴的package包/類
public static void tryInvalidRun(EPServiceProvider epService, String epl, String name, String message) {
epService.getEPAdministrator().createEPL(epl);
EPDataFlowInstance df = epService.getEPRuntime().getDataFlowRuntime().instantiate(name);
try {
df.run();
Assert.fail();
} catch (EPDataFlowExecutionException ex) {
assertException(message, ex.getMessage());
}
}
示例3: tryInvalidRun
import com.espertech.esper.client.dataflow.EPDataFlowExecutionException; //導入依賴的package包/類
public static void tryInvalidRun(EPServiceProvider epService, String epl, String name, String message) {
epService.getEPAdministrator().createEPL(epl);
EPDataFlowInstance df = epService.getEPRuntime().getDataFlowRuntime().instantiate(name);
try {
df.run();
Assert.fail();
}
catch (EPDataFlowExecutionException ex) {
assertException(message, ex.getMessage());
}
}