Interface AsyncBiFunction<T,U,R>

All Superinterfaces:
AsyncBiFunctionEx<T,U,R>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public interface AsyncBiFunction<T,U,R> extends AsyncBiFunctionEx<T,U,R>
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(T t, U u)
     
    static <T, U, R> AsyncBiFunction<T,U,R>
    of(io.activej.common.function.BiFunctionEx<? super T,? super U,? extends R> function)
    Wraps a BiFunctionEx interface.
    static <T, U, R> AsyncBiFunction<T,U,R>
    sanitize(AsyncBiFunctionEx<? super T,? super U,R> function)
     
  • Method Details