forked from External/mage
- Add reference to original library in `FluentBuilder`. - Change `I<Name>` notation to `<Name>Impl` notation. - Move error config to test resources - Add comment with config instruction - Add config to the documentation
16 lines
414 B
Java
16 lines
414 B
Java
package mage.server.managers;
|
|
|
|
import java.util.concurrent.ExecutorService;
|
|
import java.util.concurrent.ScheduledExecutorService;
|
|
|
|
public interface ThreadExecutor {
|
|
int getActiveThreads(ExecutorService executerService);
|
|
|
|
ExecutorService getCallExecutor();
|
|
|
|
ExecutorService getGameExecutor();
|
|
|
|
ScheduledExecutorService getTimeoutExecutor();
|
|
|
|
ScheduledExecutorService getTimeoutIdleExecutor();
|
|
}
|