You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@commons.apache.org by "Andras Sereny (JIRA)" <ji...@apache.org> on 2014/11/11 11:17:33 UTC

[jira] [Created] (CSV-143) CSVPrinter ill-suited in multithreaded environment

Andras Sereny created CSV-143:
---------------------------------

             Summary: CSVPrinter ill-suited in multithreaded environment
                 Key: CSV-143
                 URL: https://issues.apache.org/jira/browse/CSV-143
             Project: Commons CSV
          Issue Type: Improvement
    Affects Versions: 1.0
            Reporter: Andras Sereny


CSVPrinter doesn't support multiple threads writing to the same appendable. The class itself is not thread safe and, what's worse, it also invalidates any thread-safety guarantees provided by the underlying appendable, as in one CSVPrinter.print method there are multiple calls to out.append.

OpenCSV does better here: in CSVWriter.writeNext there is one single call to PrintWriter.writer, thus it conveniently propagates PrintWriter thread-safety.



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)