Uses of Interface
com.gengoai.function.SerializableBiConsumer
-
Packages that use SerializableBiConsumer Package Description com.gengoai.function Checked and Serializable versions of Java 8's functional elements.com.gengoai.stream A unified stream interface that can work across Java and Spark streams.com.gengoai.stream.local com.gengoai.stream.spark -
-
Uses of SerializableBiConsumer in com.gengoai.function
Methods in com.gengoai.function that return SerializableBiConsumer Modifier and Type Method Description static <T,U>
SerializableBiConsumer<T,U>Unchecked. biConsumer(CheckedBiConsumer<T,U> checked)
Generates a version of BiConsumer that will capture exceptions and rethrow them as runtime exceptionsMethods in com.gengoai.function with parameters of type SerializableBiConsumer Modifier and Type Method Description static <T,U>
BiConsumer<T,U>Serialized. biConsumer(SerializableBiConsumer<T,U> serialized)
Generates a serialized version of BiConsumer -
Uses of SerializableBiConsumer in com.gengoai.stream
Methods in com.gengoai.stream with parameters of type SerializableBiConsumer Modifier and Type Method Description void
MPairStream. forEach(SerializableBiConsumer<? super T,? super U> consumer)
Performs an operation on each item in the streamvoid
MPairStream. forEachLocal(SerializableBiConsumer<? super T,? super U> consumer)
Performs an operation on each item in the stream ensuring that is done locally and not distributed. -
Uses of SerializableBiConsumer in com.gengoai.stream.local
Methods in com.gengoai.stream.local with parameters of type SerializableBiConsumer Modifier and Type Method Description void
AbstractLocalMPairStream. forEach(@NonNull SerializableBiConsumer<? super K,? super V> consumer)
void
AbstractLocalMPairStream. forEachLocal(@NonNull SerializableBiConsumer<? super K,? super V> consumer)
-
Uses of SerializableBiConsumer in com.gengoai.stream.spark
Methods in com.gengoai.stream.spark with parameters of type SerializableBiConsumer Modifier and Type Method Description void
SparkPairStream. forEach(SerializableBiConsumer<? super T,? super U> consumer)
void
SparkPairStream. forEachLocal(SerializableBiConsumer<? super T,? super U> consumer)
-