Uses of Interface
com.tangosol.util.function.Remote.BiFunction
Packages that use Remote.BiFunction
Package
Description
Contains classes to enable Repository-like access to Coherence data.
Contains basic cluster interfaces and factories.
Contains various generic utilities.
Contains Functional interfaces allowing remote execution of lambda expressions and method references.
Contains classes to support functional-style operations on remote streams of elements,
 such as map-reduce transformations on collections.
- 
Uses of Remote.BiFunction in com.oracle.coherence.repositoryMethods in com.oracle.coherence.repository with parameters of type Remote.BiFunctionModifier and TypeMethodDescription<U,R> CompletableFuture <R> AbstractAsyncRepository.update(ID id, Remote.BiFunction<? super T, ? super U, ? extends R> updater, U value) Update an entity using specified updater and the new value.<U,R> CompletableFuture <R> AbstractAsyncRepository.update(ID id, Remote.BiFunction<? super T, ? super U, ? extends R> updater, U value, EntityFactory<? super ID, ? extends T> factory) Update an entity using specified updater function, and optionalEntityFactorythat will be used to create entity instance if it doesn't already exist in the repository.<U,R> R AbstractRepository.update(ID id, Remote.BiFunction<? super T, ? super U, ? extends R> updater, U value) Update an entity using specified updater and the new value.<U,R> R AbstractRepository.update(ID id, Remote.BiFunction<? super T, ? super U, ? extends R> updater, U value, EntityFactory<? super ID, ? extends T> factory) Update an entity using specified updater function, and optionalEntityFactorythat will be used to create entity instance if it doesn't already exist in the repository.<U,R> CompletableFuture <Map<ID, R>> AbstractAsyncRepository.updateAll(Filter<?> filter, Remote.BiFunction<? super T, ? super U, ? extends R> updater, U value) Update multiple entities using specified updater and the new value.AbstractRepository.updateAll(Filter<?> filter, Remote.BiFunction<? super T, ? super U, ? extends R> updater, U value) Update multiple entities using specified updater and the new value.
- 
Uses of Remote.BiFunction in com.tangosol.netMethods in com.tangosol.net with parameters of type Remote.BiFunctionModifier and TypeMethodDescriptiondefault CompletableFuture<V> Compute a new mapping for the specified key and its current value.default CompletableFuture<V> AsyncNamedMap.computeIfPresent(K key, Remote.BiFunction<? super K, ? super V, ? extends V> remappingFunction) Compute a new mapping given the key and its current mapped value, if the value for the specified key is present and non-null.default CompletableFuture<V> AsyncNamedMap.merge(K key, V value, Remote.BiFunction<? super V, ? super V, ? extends V> remappingFunction) If the specified key is not already associated with a value or is associated with null, associates it with the given non-null value.default CompletableFuture<Map<K, Void>> AsyncNamedMap.replaceAll(Filter<?> filter, Remote.BiFunction<? super K, ? super V, ? extends V> function) Replace each entry's value with the result of invoking the given function on that entry until all entries selected by the specified filter have been processed or the function throws an exception.default CompletableFuture<Map<K, Void>> AsyncNamedMap.replaceAll(Remote.BiFunction<? super K, ? super V, ? extends V> function) Replace each entry's value with the result of invoking the given function on that entry until all entries have been processed or the function throws an exception.default CompletableFuture<Map<K, Void>> AsyncNamedMap.replaceAll(Collection<? extends K> collKeys, Remote.BiFunction<? super K, ? super V, ? extends V> function) Replace each entry's value with the result of invoking the given function on that entry until all entries for the specified key set have been processed or the function throws an exception.
- 
Uses of Remote.BiFunction in com.tangosol.utilMethods in com.tangosol.util with parameters of type Remote.BiFunctionModifier and TypeMethodDescriptiondefault VCompute a new mapping for the specified key and its current value.default VInvocableMap.computeIfPresent(K key, Remote.BiFunction<? super K, ? super V, ? extends V> remappingFunction) Compute a new mapping given the key and its current mapped value, if the value for the specified key is present and non-null.ConverterCollections.ConverterInvocableMap.merge(TK key, TV value, Remote.BiFunction<? super TV, ? super TV, ? extends TV> remappingFunction) ConverterCollections.ConverterNamedCache.merge(TK key, TV value, Remote.BiFunction<? super TV, ? super TV, ? extends TV> remappingFunction) default VInvocableMap.merge(K key, V value, Remote.BiFunction<? super V, ? super V, ? extends V> remappingFunction) If the specified key is not already associated with a value or is associated with null, associates it with the given non-null value.default voidInvocableMap.replaceAll(Filter filter, Remote.BiFunction<? super K, ? super V, ? extends V> function) Replace each entry's value with the result of invoking the given function on that entry until all entries selected by the specified filter have been processed or the function throws an exception.default voidInvocableMap.replaceAll(Remote.BiFunction<? super K, ? super V, ? extends V> function) Replace each entry's value with the result of invoking the given function on that entry until all entries have been processed or the function throws an exception.default voidInvocableMap.replaceAll(Collection<? extends K> collKeys, Remote.BiFunction<? super K, ? super V, ? extends V> function) Replace each entry's value with the result of invoking the given function on that entry until all entries for the specified key set have been processed or the function throws an exception.
- 
Uses of Remote.BiFunction in com.tangosol.util.functionSubinterfaces of Remote.BiFunction in com.tangosol.util.functionModifier and TypeInterfaceDescriptionstatic interfaceRepresents an operation upon two operands of the same type, producing a result of the same type as the operands.Methods in com.tangosol.util.function that return Remote.BiFunctionModifier and TypeMethodDescriptiondefault <V> Remote.BiFunction<T, U, V> Remote.BiFunction.andThen(Remote.Function<? super R, ? extends V> after) Returns a composed function that first applies this function to its input, and then applies theafterfunction to the result.static <T,U, R> Remote.BiFunction <T, U, R> Remote.biFunction(Remote.BiFunction<T, U, R> biFunction) Capture serializable BiFunction.Methods in com.tangosol.util.function with parameters of type Remote.BiFunctionModifier and TypeMethodDescriptionstatic <T,U, R> Remote.BiFunction <T, U, R> Remote.biFunction(Remote.BiFunction<T, U, R> biFunction) Capture serializable BiFunction.
- 
Uses of Remote.BiFunction in com.tangosol.util.streamMethods in com.tangosol.util.stream with parameters of type Remote.BiFunctionModifier and TypeMethodDescriptiondefault <U> URemoteStream.reduce(U identity, Remote.BiFunction<U, ? super T, U> accumulator, Remote.BinaryOperator<U> combiner) Performs a reduction on the elements of this stream, using the provided identity, accumulation and combining functions.static <T,U> RemoteCollector <T, ?, U> RemoteCollectors.reducing(U identity, Remote.BiFunction<? super U, ? super T, ? extends U> mapper, Remote.BinaryOperator<U> op) Returns aCollectorwhich performs a reduction of its input elements under a specified mapping function andBinaryOperator.