Interface IgniteThrowableFunction<E,R>
-
- Type Parameters:
E- The type of the input to the function.R- The type of the result of the function.
- All Superinterfaces:
Serializable
public interface IgniteThrowableFunction<E,R> extends Serializable
Represents a function that accepts one argument and produces a result. UnlikeFunctionit is able to throwIgniteCheckedException.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description Rapply(E e)Applies this function to the given argument.
-
-
-
Method Detail
-
apply
R apply(E e) throws IgniteCheckedException
Applies this function to the given argument.- Parameters:
e- The function argument.- Returns:
- The function result.
- Throws:
IgniteCheckedException- if body execution was failed.
-
-