Description
We need to review the component class of MultiThreadedTaskMaster. Currently it's not working properly and also we don't have any test case for it.
The problem we found is that if tou try to set the number of threads before the process start, we got a NPE.
MultiThreadedTaskMaster<FileTask> taskMaster = new MultiThreadedTaskMaster<FileTask>();
taskMaster.setPoolSize(3); <-- NPE exception is thrown at this point