1 package com.atlassian.event.config;
2
3 import java.util.concurrent.TimeUnit;
4
5 /**
6 * A configuration object for thread pools used by asynchronous event dispatchers
7 */
8 public interface EventThreadPoolConfiguration {
9 int getCorePoolSize();
10
11 int getMaximumPoolSize();
12
13 long getKeepAliveTime();
14
15 TimeUnit getTimeUnit();
16 }