本文整理汇总了Java中com.ociweb.pronghorn.stage.scheduling.GraphManager.getInputPipeCount方法的典型用法代码示例。如果您正苦于以下问题:Java GraphManager.getInputPipeCount方法的具体用法?Java GraphManager.getInputPipeCount怎么用?Java GraphManager.getInputPipeCount使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.ociweb.pronghorn.stage.scheduling.GraphManager
的用法示例。
在下文中一共展示了GraphManager.getInputPipeCount方法的2个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testStagesExpectedUseCase
import com.ociweb.pronghorn.stage.scheduling.GraphManager; //导入方法依赖的package包/类
@Test
public void testStagesExpectedUseCase() throws NoSuchMethodException, SecurityException, InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException, InterruptedException {
GraphManager gm = new GraphManager();
ClientAPIFactory.clientAPI(new ClockStageFactory("1000",true,20,60), gm);
//we do not know which id will be given to which stage so walk them all and do the right test for each
int stageId = PronghornStage.totalStages();
while (--stageId>=0) {
PronghornStage stage = GraphManager.getStage(gm, stageId);
if (null!=stage) {
//filter out any stages dedicated to monitoring
if (null == GraphManager.getNota(gm, stage, GraphManager.MONITOR, null)) {
int inputs = GraphManager.getInputPipeCount(gm, stage);
//need array of RingBufferConfig objects.
PipeConfig[] inputConfigs = new PipeConfig[inputs];
int i = inputs;
while (--i>=0) {
inputConfigs[i]=GraphManager.getInputPipe(gm, stage, i).config();
}
int outputs = GraphManager.getOutputPipeCount(gm, stage.stageId);
PipeConfig[] outputConfigs = new PipeConfig[outputs];
i = outputs;
while (--i>=0) {
outputConfigs[i]=GraphManager.getOutputPipe(gm, stage, i).config();
}
//build test instances,are different instances than ones found in the graph.
testSingleStageExpectedUseCase(stage.getClass(),inputConfigs,outputConfigs);
}
}
}
}
示例2: testStagesFuzz
import com.ociweb.pronghorn.stage.scheduling.GraphManager; //导入方法依赖的package包/类
@Test
public void testStagesFuzz() throws NoSuchMethodException, SecurityException, InstantiationException, IllegalAccessException, IllegalArgumentException, InvocationTargetException, InterruptedException {
GraphManager gm = new GraphManager();
ClientAPIFactory.clientAPI(new ClockStageFactory("1000",true,20,60), gm);
//
//we do not know which id will be given to which stage so walk them all and do the right test for each
int stageId = PronghornStage.totalStages();
while (--stageId>=0) {
PronghornStage stage = GraphManager.getStage(gm, stageId);
if (null!=stage) {
//filter out any stages dedicated to monitoring
if (null == GraphManager.getNota(gm, stage, GraphManager.MONITOR, null)) {
int inputs = GraphManager.getInputPipeCount(gm, stage);
//need array of RingBufferConfig objects.
PipeConfig[] inputConfigs = new PipeConfig[inputs];
int i = inputs;
while (--i>=0) {
inputConfigs[i]=GraphManager.getInputPipe(gm, stage, i).config();
}
int outputs = GraphManager.getOutputPipeCount(gm, stage.stageId);
PipeConfig[] outputConfigs = new PipeConfig[outputs];
i = outputs;
while (--i>=0) {
outputConfigs[i]=GraphManager.getOutputPipe(gm, stage, i).config();
}
//build test instances,are different instances than ones found in the graph.
testSingleStageFuzz(stage.getClass(),inputConfigs,outputConfigs);
}
}
}
}