Uses of Interface
io.activej.async.function.AsyncFunctionEx
Packages that use AsyncFunctionEx
-
Uses of AsyncFunctionEx in io.activej.async.function
Subinterfaces of AsyncFunctionEx in io.activej.async.functionMethods in io.activej.async.function with parameters of type AsyncFunctionExModifier and TypeMethodDescriptionstatic <T,R> AsyncFunction<T, R> AsyncFunction.sanitize(AsyncFunctionEx<? super T, R> function) -
Uses of AsyncFunctionEx in io.activej.promise
Methods in io.activej.promise with parameters of type AsyncFunctionExModifier and TypeMethodDescription<U> Promise<U>AbstractPromise.then(AsyncFunctionEx<? super T, U> fn) <U> Promise<U>AbstractPromise.then(AsyncFunctionEx<? super T, U> fn, AsyncFunctionEx<Exception, U> exceptionFn) <U> Promise<U>CompleteExceptionallyPromise.then(AsyncFunctionEx<? super T, U> fn) <U> Promise<U>CompleteExceptionallyPromise.then(AsyncFunctionEx<? super T, U> fn, AsyncFunctionEx<Exception, U> exceptionFn) final <U> Promise<U>CompletePromise.then(AsyncFunctionEx<? super T, U> fn) <U> Promise<U>CompletePromise.then(AsyncFunctionEx<? super T, U> fn, AsyncFunctionEx<Exception, U> exceptionFn) default <U> Promise<U>Promise.then(AsyncFunctionEx<? super T, U> fn) Returns a newPromisewhich is obtained by mapping a result ofthispromise to some other promise.default <U> Promise<U>Promise.then(AsyncFunctionEx<? super T, U> fn, AsyncFunctionEx<Exception, U> exceptionFn) Returns a newPromisewhich is obtained by mapping either a result or an exception ofthispromise to some other promises.