1 5 6 package com.sun.corba.se.spi.orbutil.threadpool; 7 8 public interface ThreadPoolManager 9 { 10 17 public ThreadPool getThreadPool(String threadpoolId) throws NoSuchThreadPoolException; 18 19 27 public ThreadPool getThreadPool(int numericIdForThreadpool) throws NoSuchThreadPoolException; 28 29 35 public int getThreadPoolNumericId(String threadpoolId); 36 37 41 public String getThreadPoolStringId(int numericIdForThreadpool); 42 43 46 public ThreadPool getDefaultThreadPool(); 47 48 52 public ThreadPoolChooser getThreadPoolChooser(String componentId); 53 54 59 public ThreadPoolChooser getThreadPoolChooser(int componentIndex); 60 61 65 public void setThreadPoolChooser(String componentId, ThreadPoolChooser aThreadPoolChooser); 66 67 72 public int getThreadPoolChooserNumericId(String componentId); 73 } 74 75 | Popular Tags |