I have a simple ArrayList and I am feeding this ArrayList from multiple Threads via Java concurrency. Each Thread will only read the same instance of this ArrayList. Is there any chance of error during the reading operation?
I have a simple ArrayList and I am feeding this ArrayList from multiple Thread
Share
Provided there are no more writes make it immutable using
Collections.unmodifiableListand then forget about read issues.