Search found 1 match

by gbadoi
Wed Jul 08, 2009 9:01 pm
Forum: JFreeChart
Topic: Multithreading support for JFreeChart
Replies: 9
Views: 15291

Re: Multithreading support for JFreeChart

I faced ConcurrentModificationException even in single thread, for large amount of data which arrives too fast. I solved as below: ------------------------------------- public class PlottingThread implements /*Runnable,*/ ChartProgressListener { // Runnable if you wish separate thread, both are work...