Uses of Interface
org.ojalgo.netio.ToFileWriter
-
Packages that use ToFileWriter 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.* -
-
Uses of ToFileWriter in org.ojalgo.data.batch
Methods in org.ojalgo.data.batch that return ToFileWriter Modifier and Type Method Description ToFileWriter<T>
BatchNode. newWriter()
-
Uses of ToFileWriter in org.ojalgo.netio
Subinterfaces of ToFileWriter in org.ojalgo.netio Modifier and Type Interface Description interface
ScoredDualWriter<T>
Classes in org.ojalgo.netio that implement ToFileWriter Modifier and Type Class Description class
DataWriter<T>
ADataOutput
basedToFileWriter
.(package private) class
ManagedWriter<T>
(package private) class
MappedWriter<IN,OUT>
(package private) class
QueuedWriter<T>
(package private) class
ShardedWriter<T>
(package private) static class
ShardedWriter.GeneralShardedConsumer<T>
(package private) static class
ShardedWriter.PowerOf2ShardedConsumer<T>
class
TextLineWriter
Fields in org.ojalgo.netio declared as ToFileWriter Modifier and Type Field Description private ToFileWriter<T>
QueuedWriter.Worker. myConsumer
private ToFileWriter<T>
ManagedWriter. myWriter
private ToFileWriter<OUT>
MappedWriter. myWriter
private ToFileWriter<T>[]
QueuedWriter. myWriters
private ToFileWriter<T>[]
ShardedWriter.GeneralShardedConsumer. myWriters
private ToFileWriter<T>[]
ShardedWriter. myWriters
private ToFileWriter<T>[]
ShardedWriter.PowerOf2ShardedConsumer. myWriters
static ToFileWriter<?>
ToFileWriter. NULL
Methods in org.ojalgo.netio that return ToFileWriter Modifier and Type Method Description <T> ToFileWriter<T>
ToFileWriter.Builder. build(java.util.function.Function<F,ToFileWriter<T>> factory)
<T> ToFileWriter<T>
ToFileWriter.Builder. build(java.util.function.ToIntFunction<T> distributor, java.util.function.Function<F,? extends ToFileWriter<T>> factory)
<T> ToFileWriter<EntryPair.KeyedPrimitive<T>>
ToFileWriter.Builder. buildMapped(java.util.function.Function<F,ToFileWriter<T>> factory)
default ToFileWriter<T>
TextLineInterpreter. newWriter(java.io.File file)
default ToFileWriter<T>
TextLineInterpreter. newWriter(java.io.File file, OperatorWithException<java.io.OutputStream> filter)
<T> ToFileWriter<T>
TextLineWriter. withFormatter(TextLineWriter.Formatter<T> formatter)
Methods in org.ojalgo.netio with parameters of type ToFileWriter Modifier and Type Method Description (package private) static <T> ShardedWriter<T>
ShardedWriter. of(java.util.function.ToIntFunction<T> distributor, ToFileWriter<T>[] consumers)
Method parameters in org.ojalgo.netio with type arguments of type ToFileWriter Modifier and Type Method Description <T> ToFileWriter<T>
ToFileWriter.Builder. build(java.util.function.Function<F,ToFileWriter<T>> factory)
<T> ToFileWriter<T>
ToFileWriter.Builder. build(java.util.function.ToIntFunction<T> distributor, java.util.function.Function<F,? extends ToFileWriter<T>> factory)
<T> ToFileWriter<EntryPair.KeyedPrimitive<T>>
ToFileWriter.Builder. buildMapped(java.util.function.Function<F,ToFileWriter<T>> factory)
Constructors in org.ojalgo.netio with parameters of type ToFileWriter Constructor Description GeneralShardedConsumer(java.util.function.ToIntFunction<T> distributor, ToFileWriter<T>[] consumers)
ManagedWriter(Throughput manager, ToFileWriter<T> writer)
MappedWriter(java.util.function.Function<IN,OUT> mapper, ToFileWriter<OUT> writer)
PowerOf2ShardedConsumer(java.util.function.ToIntFunction<T> distributor, ToFileWriter<T>[] consumers)
QueuedWriter(java.util.concurrent.ExecutorService executor, java.util.concurrent.BlockingQueue<T> queue, ToFileWriter<T>... writers)
ShardedWriter(ToFileWriter<T>[] consumers)
Worker(QueuedWriter<T> parent, ToFileWriter<T> consumer)
-