Uses of Interface
seda.sandStorm.api.internal.ThreadManagerIF

Packages that use ThreadManagerIF
seda.sandStorm.api.internal   
seda.sandStorm.internal   
seda.sandStorm.lib.aDisk   
seda.sandStorm.lib.aSocket   
 

Uses of ThreadManagerIF in seda.sandStorm.api.internal
 

Methods in seda.sandStorm.api.internal that return ThreadManagerIF
 ThreadManagerIF StageWrapperIF.getThreadManager()
          Return the thread manager which will run this stage.
 ThreadManagerIF SystemManagerIF.getThreadManager()
          Get the default thread manager.
 ThreadManagerIF SystemManagerIF.getThreadManager(java.lang.String name)
          Get the thread manager registered under the given name.
 

Methods in seda.sandStorm.api.internal with parameters of type ThreadManagerIF
 void SystemManagerIF.addThreadManager(java.lang.String name, ThreadManagerIF threadmgr)
          Add a thread manager to the system.
 

Uses of ThreadManagerIF in seda.sandStorm.internal
 

Classes in seda.sandStorm.internal that implement ThreadManagerIF
(package private)  class AggTPSThreadManager
          AggTPSThreadManager is a refinement of the TPSTM; it attempts to schedule stages to improve aggregation.
(package private)  class TPPThreadManager
          TPPThreadManager is a thread manager implementation which provides one thread per CPU.
 class TPSThreadManager
          TPSThreadManager provides a threadpool-per-source-per-stage thread manager implementation.
 

Methods in seda.sandStorm.internal that return ThreadManagerIF
 ThreadManagerIF StageWrapper.getThreadManager()
          Return the thread manager which will run this stage.
 ThreadManagerIF sandStormMgr.getThreadManager()
          Return the default thread manager.
 ThreadManagerIF sandStormMgr.getThreadManager(java.lang.String name)
          Return the thread manager with the given name.
 

Methods in seda.sandStorm.internal with parameters of type ThreadManagerIF
 void sandStormMgr.addThreadManager(java.lang.String name, ThreadManagerIF tm)
          Add a thread manager with the given name.
 

Constructors in seda.sandStorm.internal with parameters of type ThreadManagerIF
StageWrapper(ManagerIF mgr, java.lang.String name, EventHandlerIF handler, ConfigDataIF config, ThreadManagerIF threadmgr)
          Create a StageWrapper with the given name, handler, config data, and thread manager.
StageWrapper(ManagerIF mgr, java.lang.String name, EventHandlerIF handler, ConfigDataIF config, ThreadManagerIF threadmgr, int queueThreshold)
          Create a StageWrapper with the given name, handler, config data, thread manager, and queue threshold.
 

Uses of ThreadManagerIF in seda.sandStorm.lib.aDisk
 

Classes in seda.sandStorm.lib.aDisk that implement ThreadManagerIF
(package private)  class AFileTM
          Internal abstract class used to represent an AFile thread manager.
(package private)  class AFileTPTM
          This is the ThreadManager implementation for AFileTPImpl.
 

Methods in seda.sandStorm.lib.aDisk that return ThreadManagerIF
(package private) static ThreadManagerIF AFileMgr.getTM()
          Return the ThreadManagerIF corresponding to the chosen implementation.
 ThreadManagerIF AFileTPStageWrapper.getThreadManager()
          Return the thread manager for this stage.
 

Constructors in seda.sandStorm.lib.aDisk with parameters of type ThreadManagerIF
AFileTPStageWrapper(java.lang.String name, EventHandlerIF handler, ConfigDataIF config, ThreadManagerIF tm)
           
 

Uses of ThreadManagerIF in seda.sandStorm.lib.aSocket
 

Classes in seda.sandStorm.lib.aSocket that implement ThreadManagerIF
(package private)  class aSocketRCTMSleep
          aSocketRCTMSleep is a version of aSocketThreadManager that incorporates a rate controller: given a target packet-processing rate, it adjusts its schedule to attempt to match that rate.
(package private)  class aSocketThreadManager
          aSocketThreadManager provides a thread manager for the aSocket layer: one thread for each of the read, write, and listen stages.
 

Methods in seda.sandStorm.lib.aSocket that return ThreadManagerIF
 ThreadManagerIF aSocketStageWrapper.getThreadManager()
          Return the thread manager for this stage.
 

Constructors in seda.sandStorm.lib.aSocket with parameters of type ThreadManagerIF
aSocketStageWrapper(java.lang.String name, EventHandlerIF handler, ConfigDataIF config, ThreadManagerIF tm)