@FunctionalInterface public interface DistributedFunction<T,R> extends Function<T,R>, Serializable
Serializable variant of java.util.function.Function
which declares checked exception.| Modifier and Type | Method and Description |
|---|---|
default <V> DistributedFunction<T,V> |
andThen(DistributedFunction<? super R,? extends V> after)
Serializable variant of java.util.function.Function#andThen(Function). |
default R |
apply(T t) |
R |
applyEx(T t)
Exception-declaring version of
Function.apply(T). |
default <V> DistributedFunction<V,R> |
compose(DistributedFunction<? super V,? extends T> before)
Serializable variant of java.util.function.Function#compose(Function). |
static <T> DistributedFunction<T,T> |
identity()
Serializable variant of java.util.function.Function#identity(). |
R applyEx(T t) throws Exception
Function.apply(T).Exceptionstatic <T> DistributedFunction<T,T> identity()
Serializable variant of java.util.function.Function#identity().default <V> DistributedFunction<V,R> compose(DistributedFunction<? super V,? extends T> before)
Serializable variant of java.util.function.Function#compose(Function).default <V> DistributedFunction<T,V> andThen(DistributedFunction<? super R,? extends V> after)
Serializable variant of java.util.function.Function#andThen(Function).Copyright © 2018 Hazelcast, Inc.. All rights reserved.