Package io.servicetalk.concurrent.api
Interface BiIntFunction<T,R>
-
- Type Parameters:
T- The other argument to this function.R- Result of this function.
- All Known Subinterfaces:
AutoRetryStrategyProvider.AutoRetryStrategy
- 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 BiIntFunction<T,R>A special function that takes anintand a custom argument and returns the result.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Rapply(int i, T t)Evaluates this function on the given arguments.
-
-
-
Method Detail
-
apply
R apply(int i, T t)
Evaluates this function on the given arguments.- Parameters:
i- Theintargument.t- TheBiIntFunctionargument.- Returns:
- Result
BiIntFunctionof this function.
-
-