Uses of Interface
org.wildfly.common.function.ExceptionBiFunction
-
Packages that use ExceptionBiFunction Package Description org.jboss.ejb.client.legacy org.wildfly.common.context Types related to management of contextual objects.org.wildfly.common.function Classes which implement useful functions which are missing fromjava.util.function.org.wildfly.naming.client org.wildfly.security.auth.server Server side of authentication provided by Elytron. -
-
Uses of ExceptionBiFunction in org.jboss.ejb.client.legacy
Methods in org.jboss.ejb.client.legacy with parameters of type ExceptionBiFunction Modifier and Type Method Description static <T,U>
JBossEJBPropertiesJBossEJBProperties. fromResource(String fileName, ExceptionBiFunction<T,U,InputStream,IOException> streamSupplier, T param1, U param2) -
Uses of ExceptionBiFunction in org.wildfly.common.context
Methods in org.wildfly.common.context with parameters of type ExceptionBiFunction Modifier and Type Method Description default <T,U,R,E extends Exception>
RContextual. runExBiFunction(ExceptionBiFunction<T,U,R,E> function, T param1, U param2)Run the given task with this contextual object selected. -
Uses of ExceptionBiFunction in org.wildfly.common.function
Subinterfaces of ExceptionBiFunction in org.wildfly.common.function Modifier and Type Interface Description interfaceExceptionBinaryOperator<T,E extends Exception>A binary operator which can throw an exception.Methods in org.wildfly.common.function that return ExceptionBiFunction Modifier and Type Method Description default <R2> ExceptionBiFunction<T,U,R2,E>ExceptionBiFunction. andThen(ExceptionFunction<? super R,? extends R2,? extends E> after)default <R> ExceptionBiFunction<T,U,R,E>ExceptionToIntBiFunction. andThen(ExceptionIntFunction<R,E> after)default <R> ExceptionBiFunction<T,U,R,E>ExceptionToIntBiFunction. andThen(ExceptionLongFunction<R,E> after)default <R> ExceptionBiFunction<T,U,R,E>ExceptionToLongBiFunction. andThen(ExceptionLongFunction<R,E> after)static <T,R,E extends Exception>
ExceptionBiFunction<ExceptionFunction<T,R,E>,T,R,E>Functions. exceptionFunctionBiFunction()Get the singleton function which accepts a function and a parameter to pass to the function, and returns the result of the function.static <R,E extends Exception>
ExceptionBiFunction<ExceptionFunction<ExceptionSupplier<R,E>,R,E>,ExceptionSupplier<R,E>,R,E>Functions. exceptionSupplierFunctionBiFunction()Get the singleton function which accepts a function which accepts a supplier, all of which return the result of the supplier.static <T,R>
ExceptionBiFunction<Function<T,R>,T,R,RuntimeException>Functions. functionExceptionBiFunction()Get the singleton function which accepts a function and a parameter to pass to the function, and returns the result of the function.Methods in org.wildfly.common.function with parameters of type ExceptionBiFunction Modifier and Type Method Description default <R2> ExceptionFunction<T,R2,E>ExceptionFunction. andThen(ExceptionBiFunction<? super T,? super R,? extends R2,? extends E> after) -
Uses of ExceptionBiFunction in org.wildfly.naming.client
Methods in org.wildfly.naming.client with parameters of type ExceptionBiFunction Modifier and Type Method Description default <T,U,R,E extends Exception>
RNamingProvider. performExceptionAction(ExceptionBiFunction<T,U,R,E> function, T arg1, U arg2)Perform an action under the current naming provider. -
Uses of ExceptionBiFunction in org.wildfly.security.auth.server
Methods in org.wildfly.security.auth.server with parameters of type ExceptionBiFunction Modifier and Type Method Description <T,U,R,E extends Exception>
RFlexibleIdentityAssociation. runAsFunctionEx(ExceptionBiFunction<T,U,R,E> action, T parameter1, U parameter2)<T,U,R,E extends Exception>
RScoped. runAsFunctionEx(ExceptionBiFunction<T,U,R,E> action, T parameter1, U parameter2)Run an action under this identity.<T,U,R,E extends Exception>
RSecurityIdentity. runAsFunctionEx(ExceptionBiFunction<T,U,R,E> action, T parameter1, U parameter2)Run an action under this identity.
-