本文整理汇总了Java中com.google.common.util.concurrent.Service.awaitTerminated方法的典型用法代码示例。如果您正苦于以下问题:Java Service.awaitTerminated方法的具体用法?Java Service.awaitTerminated怎么用?Java Service.awaitTerminated使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在类com.google.common.util.concurrent.Service
的用法示例。
在下文中一共展示了Service.awaitTerminated方法的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: awaitShutdown
import com.google.common.util.concurrent.Service; //导入方法依赖的package包/类
/**
* Awaits for the given Service to shut down, whether normally or exceptionally.
*
* @param service The store to monitor.
* @param throwIfFailed Throw the resulting exception if the store ended up in a FAILED state.
*/
public static void awaitShutdown(Service service, boolean throwIfFailed) {
try {
service.awaitTerminated();
} catch (IllegalStateException ex) {
if (throwIfFailed || service.state() != Service.State.FAILED) {
throw ex;
}
}
}