Uses of Interface
seda.sandStorm.api.ManagerIF

Packages that use ManagerIF
seda.sandStorm.api   
seda.sandStorm.internal   
seda.sandStorm.lib.aDisk   
seda.sandStorm.lib.aSocket   
seda.sandStorm.lib.Gnutella   
seda.sandStorm.lib.http   
seda.sandStorm.main   
 

Uses of ManagerIF in seda.sandStorm.api
 

Methods in seda.sandStorm.api that return ManagerIF
 ManagerIF ConfigDataIF.getManager()
          Return a handle to the system manager.
 

Uses of ManagerIF in seda.sandStorm.internal
 

Classes in seda.sandStorm.internal that implement ManagerIF
 class sandStormMgr
          This class provides management functionality for the Sandstorm runtime system.
 

Fields in seda.sandStorm.internal declared as ManagerIF
protected  ManagerIF TPSThreadManager.mgr
           
 

Methods in seda.sandStorm.internal that return ManagerIF
 ManagerIF ConfigData.getManager()
          Return the local manager.
 

Methods in seda.sandStorm.internal with parameters of type ManagerIF
(package private)  void ConfigData.setManager(ManagerIF mgr)
           
 

Constructors in seda.sandStorm.internal with parameters of type ManagerIF
AggThrottle(StageWrapperIF stage, ManagerIF mgr)
           
ConfigData(ManagerIF mgr)
          Create a ConfigData with the given manager and no argument list.
ConfigData(ManagerIF mgr, java.util.Hashtable args)
          Create a ConfigData with the given manager and argument list.
ConfigData(ManagerIF mgr, java.lang.String[] args)
          Create a ConfigData with the given manager and argument list, specified as an array of strings of the form "key=value".
ResponseTimeController(ManagerIF mgr, StageWrapperIF stage)
           
ResponseTimeControllerDirect(ManagerIF mgr, StageWrapperIF stage)
           
ResponseTimeControllerMM1(ManagerIF mgr, StageWrapperIF stage)
           
ResponseTimeControllerMulticlass(ManagerIF mgr, StageWrapperIF stage)
           
ResponseTimeControllerPID(ManagerIF mgr, StageWrapperIF stage)
           
sandStormProfiler(ManagerIF mgr)
           
SinkProxy(SinkIF sink, ManagerIF mgr, StageWrapperIF toStage)
          Create a SinkProxy for the given sink.
StageGraph(ManagerIF mgr)
           
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.
ThreadPool(StageWrapperIF stage, ManagerIF mgr, java.lang.Runnable runnable)
          Create a thread pool for the given stage, manager and runnable, with the thread pool controller determining the number of threads used.
ThreadPool(StageWrapperIF stage, ManagerIF mgr, java.lang.Runnable runnable, int numThreads)
          Create a thread pool with the given name, manager, runnable, and a fixed number of threads.
ThreadPool(StageWrapperIF stage, ManagerIF mgr, java.lang.Runnable runnable, int initialThreads, int minThreads, int maxThreads, int blockTime, int idleTimeThreshold)
          Create a thread pool with the given name, manager, runnable, and thread sizing parameters.
ThreadPoolController(ManagerIF mgr)
           
ThreadPoolController(ManagerIF mgr, int delay, int threshold)
           
TPSThreadManager(ManagerIF mgr)
           
TPSThreadManager(ManagerIF mgr, boolean initialize)
           
 

Uses of ManagerIF in seda.sandStorm.lib.aDisk
 

Methods in seda.sandStorm.lib.aDisk with parameters of type ManagerIF
static void AFileMgr.initialize(ManagerIF mgr, SystemManagerIF sysmgr)
          Called at startup time by the Sandstorm runtime.
 

Constructors in seda.sandStorm.lib.aDisk with parameters of type ManagerIF
AFileTPTM(ManagerIF mgr, SystemManagerIF sysmgr)
           
 

Uses of ManagerIF in seda.sandStorm.lib.aSocket
 

Methods in seda.sandStorm.lib.aSocket with parameters of type ManagerIF
static void aSocketMgr.initialize(ManagerIF mgr, SystemManagerIF sysmgr)
          Called at startup time by the Sandstorm runtime.
 

Constructors in seda.sandStorm.lib.aSocket with parameters of type ManagerIF
aSocketRCTMSleep(ManagerIF mgr)
           
aSocketThreadManager(ManagerIF mgr)
           
 

Uses of ManagerIF in seda.sandStorm.lib.Gnutella
 

Constructors in seda.sandStorm.lib.Gnutella with parameters of type ManagerIF
GnutellaCatcher(ManagerIF mgr, GnutellaServer gs)
          Create a GnutellaCatcher in the context of the given vSpace clone, using the given GnutellaServer to establish new outgoing connections.
GnutellaServer(ManagerIF mgr, SinkIF clientSink)
          Create a Gnutella server listening for incoming connections on the default port of 6346.
GnutellaServer(ManagerIF mgr, SinkIF clientSink, int listenPort)
          Create a Gnutella server listening for incoming connections on the given listenPort.
 

Uses of ManagerIF in seda.sandStorm.lib.http
 

Fields in seda.sandStorm.lib.http declared as ManagerIF
protected  ManagerIF httpServer.mgr
           
 

Constructors in seda.sandStorm.lib.http with parameters of type ManagerIF
httpServer(ManagerIF mgr, SinkIF clientSink)
          Create an HTTP server listening for incoming connections on the default port of 8080.
httpServer(ManagerIF mgr, SinkIF clientSink, int listenPort)
          Create an HTTP server listening for incoming connections on the given listenPort.
 

Uses of ManagerIF in seda.sandStorm.main
 

Methods in seda.sandStorm.main that return ManagerIF
 ManagerIF Sandstorm.getManager()
          Return a handler to the ManagerIF for the Sandstorm instance.