Concurrency collections and patterns
Task URL: https://github.com/rgrisha/secureprog/tree/master/tasks/task3
You have 1000 files with random numbers. When using n threads (n should be possible to adjusted live), filter out only primary numbers when showing real-time statistics:
- Number of threads
- Number of files done
- Last found primary number
- Max found primary number
- Min found primary number
In this task you must use concurrent collections and producer - consumer pattern.