1
zj
2025-06-18 cdc831850f32fec33a9a8395ed91780475d6ecb9
1
2
3
4
5
6
7
8
9
package project.data.job;
 
import java.util.concurrent.RejectedExecutionHandler;
import java.util.concurrent.ThreadPoolExecutor;
 
public class OffLineEventRejectExecutingHandler implements RejectedExecutionHandler {
    
    public void rejectedExecution(Runnable r, ThreadPoolExecutor executor) {}
}