@@ -29,7 +29,7 @@ public class MyGlobalThreadPool {
if (null != executor) {
executor.shutdownNow();
}
- executor = new ThreadPoolExecutor(2, 10, 60L, TimeUnit.SECONDS, new SynchronousQueue<Runnable>());
+ executor = new ThreadPoolExecutor(10, 20, 60L, TimeUnit.SECONDS, new SynchronousQueue<Runnable>());
/**