1 package psl;
2
3 /**
4 * MX bean interface for a dispatcher thread factory.
5 */
6 public interface DispatcherThreadFactoryMXBean {
7 /**
8 * Obtains the thread factory name.
9 * @return the name
10 */
11 String getName();
12
13 /**
14 * Obtains the thread count.
15 * @return the thread count
16 */
17 int getThreadCount();
18 }