本文整理汇总了Java中com.google.common.util.concurrent.AbstractService类的典型用法代码示例。如果您正苦于以下问题:Java AbstractService类的具体用法?Java AbstractService怎么用?Java AbstractService使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
AbstractService类属于com.google.common.util.concurrent包,在下文中一共展示了AbstractService类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: testThreadName
import com.google.common.util.concurrent.AbstractService; //导入依赖的package包/类
/** Verify that the name of the thread created by LeaderSelector is set correctly. */
@Test
public void testThreadName() throws Exception {
final String expectedThreadName = "TestLeaderService";
final SettableFuture<String> actualThreadName = SettableFuture.create();
register(new LeaderService(_curator, PATH, "id", expectedThreadName, 1, TimeUnit.HOURS, new Supplier<Service>() {
@Override
public Service get() {
return new AbstractService() {
@Override
protected void doStart() {
actualThreadName.set(Thread.currentThread().getName());
notifyStarted();
}
@Override
protected void doStop() {
notifyStopped();
}
};
}
})).startAsync();
assertEquals(expectedThreadName, actualThreadName.get(1, TimeUnit.MINUTES));
}