Uses of Class
org.ojalgo.data.batch.BatchNode.Builder
-
Packages that use BatchNode.Builder Package Description org.ojalgo.data.batch -
-
Uses of BatchNode.Builder in org.ojalgo.data.batch
Methods in org.ojalgo.data.batch that return BatchNode.Builder Modifier and Type Method Description BatchNode.Builder<T>
BatchNode.Builder. distributor(java.util.function.ToIntFunction<T> distributor)
The default is to distribute randomly.BatchNode.Builder<T>
BatchNode.Builder. executor(java.util.concurrent.ExecutorService executor)
BatchNode.Builder<T>
BatchNode.Builder. fragmentation(int fragmentation)
The number of underlying files/shards.static <T> BatchNode.Builder<T>
BatchNode. newBuilder(java.io.File directory, DataInterpreter<T> interpreter)
<T> BatchNode.Builder<T>
BatchManager. newNodeBuilder(java.lang.String nodeName, DataInterpreter<T> dataInterpreter)
BatchNode.Builder<T>
BatchNode.Builder. parallelism(int parallelism)
BatchNode.Builder<T>
BatchNode.Builder. parallelism(java.util.function.IntSupplier parallelism)
How many worker threads should process data in parallel?BatchNode.Builder<T>
BatchNode.Builder. queue(int capacity)
When reading and/or writing data from/to disk data is temporarily queued.Constructors in org.ojalgo.data.batch with parameters of type BatchNode.Builder Constructor Description BatchNode(BatchNode.Builder<T> builder)
-