hz-zhhq-app-service/greenH5modul/.svn/pristine/e5/e5508c92bedd3a812bc1e4dc1d6...

15 lines
329 B
Plaintext
Raw Normal View History

2025-01-21 13:12:35 +08:00
package com.jysoft.igwmessage;
import java.util.concurrent.ExecutorService;
import java.util.concurrent.Executors;
public class ExecutorsUtils {
private static ExecutorService threadPool = Executors.newCachedThreadPool();
private ExecutorsUtils(){}
public static ExecutorService getInstance(){
return threadPool;
}
}