Uses of Interface
org.ojalgo.type.function.AutoConsumer
-
Packages that use AutoConsumer Package Description org.ojalgo.data.batch org.ojalgo.netio This package loosely corresponds to (extends) the packages: java.io.*, java.nio.*, java.net.* and sun.net.*org.ojalgo.type.function -
-
Uses of AutoConsumer in org.ojalgo.data.batch
Methods in org.ojalgo.data.batch that return AutoConsumer Modifier and Type Method Description AutoConsumer<T>
BatchNode. newWriter()
-
Uses of AutoConsumer in org.ojalgo.netio
Subinterfaces of AutoConsumer in org.ojalgo.netio Modifier and Type Interface Description interface
ToFileWriter<T>
Classes in org.ojalgo.netio that implement AutoConsumer Modifier and Type Class Description class
DataWriter<T>
ADataOutput
basedToFileWriter
.class
TextLineWriter
Methods in org.ojalgo.netio that return AutoConsumer Modifier and Type Method Description <T> AutoConsumer<T>
ToFileWriter.Builder. build(java.util.function.Function<java.io.File,ToFileWriter<T>> factory)
<T> AutoConsumer<T>
ToFileWriter.Builder. build(java.util.function.ToIntFunction<T> distributor, java.util.function.Function<java.io.File,? extends AutoConsumer<T>> factory)
<T> AutoConsumer<EntryPair.KeyedPrimitive<T>>
ToFileWriter.Builder. buildMapped(java.util.function.Function<java.io.File,ToFileWriter<T>> factory)
default AutoConsumer<T>
TextLineInterpreter. newWriter(java.io.File file)
default AutoConsumer<T>
TextLineInterpreter. newWriter(java.io.File file, OperatorWithException<java.io.OutputStream> filter)
<T> AutoConsumer<T>
TextLineWriter. withFormatter(TextLineWriter.Formatter<T> formatter)
Method parameters in org.ojalgo.netio with type arguments of type AutoConsumer Modifier and Type Method Description <T> AutoConsumer<T>
ToFileWriter.Builder. build(java.util.function.ToIntFunction<T> distributor, java.util.function.Function<java.io.File,? extends AutoConsumer<T>> factory)
-
Uses of AutoConsumer in org.ojalgo.type.function
Subinterfaces of AutoConsumer in org.ojalgo.type.function Modifier and Type Interface Description interface
ScoredDualConsumer<T>
Classes in org.ojalgo.type.function that implement AutoConsumer Modifier and Type Class Description (package private) class
ManagedConsumer<T>
(package private) class
MappedConsumer<IN,OUT>
(package private) class
QueuedConsumer<T>
(package private) class
ShardedConsumer<T>
(package private) static class
ShardedConsumer.GeneralShardedConsumer<T>
(package private) static class
ShardedConsumer.PowerOf2ShardedConsumer<T>
Fields in org.ojalgo.type.function declared as AutoConsumer Modifier and Type Field Description static AutoConsumer<?>
AutoConsumer. NULL
Methods in org.ojalgo.type.function that return AutoConsumer Modifier and Type Method Description static <T> AutoConsumer<T>
AutoConsumer. managed(java.lang.String name, java.util.function.Consumer<T> consumer)
Will create a JMX bean, with the given name, that keeps track of the consumer's throughput.static <T> AutoConsumer<T>
AutoConsumer. managed(Throughput manager, java.util.function.Consumer<T> consumer)
If you want that throughput manager to be registered as a JMX bean, that's up to you.static <S,T>
AutoConsumer<S>AutoConsumer. mapped(java.util.function.Function<S,T> mapper, java.util.function.Consumer<T> consumer)
Map/transform and then consumestatic <T> AutoConsumer<T>
AutoConsumer. queued(java.util.concurrent.ExecutorService executor, java.util.concurrent.BlockingQueue<T> queue, java.util.function.Consumer<T>... consumers)
Put on the queue, and then the consumers work off that queue.static <T> AutoConsumer<T>
AutoConsumer. sharded(java.util.function.ToIntFunction<T> distributor, java.util.function.Consumer<T>... consumers)
Distribute to 1 of the consumers
-