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 interfaceScoredDualWriter<T>Classes in org.ojalgo.netio that implement ToFileWriter Modifier and Type Class Description classDataWriter<T>ADataOutputbasedToFileWriter.(package private) classManagedWriter<T>(package private) classMappedWriter<IN,OUT>(package private) classQueuedWriter<T>(package private) classShardedWriter<T>(package private) static classShardedWriter.GeneralShardedConsumer<T>(package private) static classShardedWriter.PowerOf2ShardedConsumer<T>classTextLineWriterFields in org.ojalgo.netio declared as ToFileWriter Modifier and Type Field Description private ToFileWriter<T>QueuedWriter.Worker. myConsumerprivate ToFileWriter<T>ManagedWriter. myWriterprivate ToFileWriter<OUT>MappedWriter. myWriterprivate ToFileWriter<T>[]QueuedWriter. myWritersprivate ToFileWriter<T>[]ShardedWriter.GeneralShardedConsumer. myWritersprivate ToFileWriter<T>[]ShardedWriter. myWritersprivate ToFileWriter<T>[]ShardedWriter.PowerOf2ShardedConsumer. myWritersstatic ToFileWriter<?>ToFileWriter. NULLMethods 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)
-