1 package com.tc.async.api; 2 3 import com.tc.logging.TCLoggerProvider; 4 5 8 12 public interface StageManager { 13 public Stage createStage(String name, EventHandler handler, int threads, int maxSize); 14 15 public void startStage(Stage stage, ConfigurationContext context); 16 17 public void startAll(ConfigurationContext context); 18 19 public void stopStage(Stage stage); 20 21 public void stopAll(); 22 23 public Stage getStage(String name); 24 25 public void setLoggerProvider(TCLoggerProvider loggerProvider); 26 27 } | Popular Tags |