6 lines
179 B
Java
6 lines
179 B
Java
package com.tridium.util.backport.concurrent;
|
|
|
|
public interface RejectedExecutionHandler {
|
|
void rejectedExecution(Runnable runnable, ThreadPoolExecutor threadPoolExecutor);
|
|
}
|