本文整理汇总了Java中org.wildfly.common.function.ExceptionBiFunction类的典型用法代码示例。如果您正苦于以下问题:Java ExceptionBiFunction类的具体用法?Java ExceptionBiFunction怎么用?Java ExceptionBiFunction使用的例子?那么, 这里精选的类代码示例或许可以为您提供帮助。
ExceptionBiFunction类属于org.wildfly.common.function包,在下文中一共展示了ExceptionBiFunction类的1个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。
示例1: runExBiFunction
import org.wildfly.common.function.ExceptionBiFunction; //导入依赖的package包/类
/**
* Run the given task with this contextual object selected.
*
* @param function the task to run (must not be {@code null})
* @param param1 the first parameter to pass to the task
* @param param2 the second parameter to pass to the task
* @param <T> the first parameter type
* @param <U> the second parameter type
* @param <R> the return value type
* @param <E> the exception type
* @return the action return value
* @throws E if an exception occurs in the task
*/
default <T, U, R, E extends Exception> R runExBiFunction(ExceptionBiFunction<T, U, R, E> function, T param1, U param2) throws E {
final ContextManager<C> contextManager = getInstanceContextManager();
final C old = contextManager.getAndSetCurrent(this);
try {
return function.apply(param1, param2);
} finally {
contextManager.restoreCurrent(old);
}
}