Uses of Class
com.opencsv.bean.concurrent.OrderedObject
-
Packages that use OrderedObject Package Description com.opencsv.bean.concurrent This package collects all classes necessary for the parallel processing of beans. -
-
Uses of OrderedObject in com.opencsv.bean.concurrent
Fields in com.opencsv.bean.concurrent with type parameters of type OrderedObject Modifier and Type Field Description protected java.util.concurrent.BlockingQueue<OrderedObject<T>>
IntolerantThreadPoolExecutor. resultQueue
A queue of the beans created.protected java.util.concurrent.BlockingQueue<OrderedObject<T>>
IntolerantThreadPoolExecutor. resultQueue
A queue of the beans created.protected java.util.concurrent.BlockingQueue<OrderedObject<CsvException>>
IntolerantThreadPoolExecutor. thrownExceptionsQueue
A queue of exceptions thrown by threads during processing.protected java.util.concurrent.BlockingQueue<OrderedObject<CsvException>>
IntolerantThreadPoolExecutor. thrownExceptionsQueue
A queue of exceptions thrown by threads during processing.Constructor parameters in com.opencsv.bean.concurrent with type arguments of type OrderedObject Constructor Description ProcessCsvBean(long lineNumber, MappingStrategy<T> mappingStrategy, T bean, java.util.concurrent.BlockingQueue<OrderedObject<java.lang.String[]>> resultantLineQueue, java.util.concurrent.BlockingQueue<OrderedObject<CsvException>> thrownExceptionsQueue, boolean throwExceptions)
The only constructor for creating a line of CSV output out of a bean.ProcessCsvLine(long lineNumber, MappingStrategy<? extends T> mapper, CsvToBeanFilter filter, java.util.List<BeanVerifier<T>> verifiers, java.lang.String[] line, java.util.concurrent.BlockingQueue<OrderedObject<T>> resultantBeanQueue, java.util.concurrent.BlockingQueue<OrderedObject<CsvException>> thrownExceptionsQueue, boolean throwExceptions)
The only constructor for creating a bean out of a line of input.
-