Uses of Interface
com.tangosol.util.function.Remote.LongFunction
-
Packages that use Remote.LongFunction Package Description com.tangosol.util.function Contains Functional interfaces allowing remote execution of lambda expressions and method references.com.tangosol.util.stream Contains classes to support functional-style operations on remote streams of elements, such as map-reduce transformations on collections. -
-
Uses of Remote.LongFunction in com.tangosol.util.function
Methods in com.tangosol.util.function that return Remote.LongFunction Modifier and Type Method Description static <R> Remote.LongFunction<R>
Remote. longFunction(Remote.LongFunction<R> function)
Capture serializable LongFunction.Methods in com.tangosol.util.function with parameters of type Remote.LongFunction Modifier and Type Method Description static <R> Remote.LongFunction<R>
Remote. longFunction(Remote.LongFunction<R> function)
Capture serializable LongFunction. -
Uses of Remote.LongFunction in com.tangosol.util.stream
Methods in com.tangosol.util.stream with parameters of type Remote.LongFunction Modifier and Type Method Description default RemoteLongStream
RemoteLongStream. flatMap(Remote.LongFunction<? extends LongStream> mapper)
Returns a stream consisting of the results of replacing each element of this stream with the contents of a mapped stream produced by applying the provided mapping function to each element.default <U> RemoteStream<U>
RemoteLongStream. mapToObj(Remote.LongFunction<? extends U> mapper)
Returns an object-valuedStream
consisting of the results of applying the given function to the elements of this stream.
-