Interface AsyncBiFunction<T,U,R>

All Superinterfaces:
BiFunction<T,U,Future<R>>

public interface AsyncBiFunction<T,U,R> extends BiFunction<T,U,Future<R>>
A functional interface for asynchronous operations that take two arguments and return a future result.
Author:
Bruno Salmon
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(T arg1, U arg2)
     

    Methods inherited from interface java.util.function.BiFunction

    andThen