当前位置: 首页>>代码示例>>Java>>正文


Java GraphManager.getInputPipeCount方法代码示例

本文整理汇总了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);
								
			}
		}
	}
	
}
 
开发者ID:oci-pronghorn,项目名称:PronghornGateway,代码行数:37,代码来源:TestStages.java

示例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);
								
			}
		}
	}
	
}
 
开发者ID:oci-pronghorn,项目名称:PronghornGateway,代码行数:40,代码来源:TestStages.java


注:本文中的com.ociweb.pronghorn.stage.scheduling.GraphManager.getInputPipeCount方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。