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


Java Fiber.join方法代码示例

本文整理汇总了Java中co.paralleluniverse.fibers.Fiber.join方法的典型用法代码示例。如果您正苦于以下问题:Java Fiber.join方法的具体用法?Java Fiber.join怎么用?Java Fiber.join使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在co.paralleluniverse.fibers.Fiber的用法示例。


在下文中一共展示了Fiber.join方法的3个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: testDefaultSleep

import co.paralleluniverse.fibers.Fiber; //导入方法依赖的package包/类
@Test
public void testDefaultSleep() throws Exception {
	final Script script = createScript("sleep(1000);", new HashMap<String, Object>());
	final AtomicInteger counter = new AtomicInteger(0);
	Fiber fiber = new Fiber(scheduler, new SuspendableRunnable() {
		@Override
		public void run() throws SuspendExecution, InterruptedException {
			counter.incrementAndGet();
			script.run();
			counter.incrementAndGet();
		}
	});
	fiber.start();
	fiber.join();
	Assert.assertEquals(counter.intValue(), 2);
}
 
开发者ID:dinix2008,项目名称:quasar-groovy,代码行数:17,代码来源:FiberTest.java

示例2: testClosuresSleep

import co.paralleluniverse.fibers.Fiber; //导入方法依赖的package包/类
@Test
public void testClosuresSleep() throws Exception {
	final SleepMethodSupport sleepMethodSupport = new SleepMethodSupport();
	HashMap<String, Object> args = new HashMap<String, Object>() {
		{
			put("sleepMethodSupport", sleepMethodSupport);
			put("_sleep", new MethodClosure(sleepMethodSupport, "_sleep"));
		}
	};
	final Script script = createScript("sleep(1000);_sleep(1000);sleepMethodSupport._sleep(1000)", args);
	final AtomicInteger counter = new AtomicInteger(0);
	Fiber fiber = new Fiber(scheduler, new SuspendableRunnable() {
		@Override
		public void run() throws SuspendExecution, InterruptedException {
			counter.incrementAndGet();
			script.run();
			counter.incrementAndGet();
		}
	});
	fiber.start();
	fiber.join();
	Assert.assertEquals(counter.intValue(), 2);
}
 
开发者ID:dinix2008,项目名称:quasar-groovy,代码行数:24,代码来源:FiberTest.java

示例3: selectMethodInstrumented

import co.paralleluniverse.fibers.Fiber; //导入方法依赖的package包/类
@Test
public void selectMethodInstrumented() throws Exception {
	Assert.assertTrue(SuspendableHelper.isInstrumented(org.codehaus.groovy.vmplugin.v7.IndyInterface.class, "selectMethod"));

	final Script script = createScript("sleep(1000);", new HashMap<String, Object>());
	Fiber fiber = new Fiber(scheduler, new SuspendableRunnable() {
		@Override
		public void run() throws SuspendExecution, InterruptedException {
			script.run();
		}
	});
	fiber.start();
	fiber.join();
}
 
开发者ID:dinix2008,项目名称:quasar-groovy,代码行数:15,代码来源:FiberTest.java


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