More information: http://www.cs.berkeley.edu/~mdw/proj/seda/

mdw.sandStorm.internal
Class StageWrapper

java.lang.Object
  |
  +--mdw.sandStorm.internal.StageWrapper
All Implemented Interfaces:
StageWrapperIF

class StageWrapper
extends java.lang.Object
implements StageWrapperIF

A StageWrapper is a basic implementation of StageWrapperIF for application-level stages.

Author:
Matt Welsh

Constructor Summary
(package private) StageWrapper(java.lang.String name, EventHandlerIF handler, ConfigDataIF config, ThreadManagerIF threadmgr)
          Create a StageWrapper with the given name, handler, config data, and thread manager.
(package private) StageWrapper(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.
 
Method Summary
 void destroy()
          Destroy this stage.
 EventHandlerIF getEventHandler()
          Return the event handler associated with this stage.
 SourceIF getSource()
          Return the set of sources from which events should be pulled to pass to this EventHandlerIF.
 StageIF getStage()
          Return the stage handle for this stage.
(package private)  StageStats getStats()
          Return execution statistics for this stage.
 ThreadManagerIF getThreadManager()
          Return the thread manager which will run this stage.
 void init()
          Initialize this stage.
 java.lang.String toString()
           
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
 

Constructor Detail

StageWrapper

StageWrapper(java.lang.String name,
             EventHandlerIF handler,
             ConfigDataIF config,
             ThreadManagerIF threadmgr)
Create a StageWrapper with the given name, handler, config data, and thread manager.

StageWrapper

StageWrapper(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.
Method Detail

init

public void init()
          throws java.lang.Exception
Initialize this stage.
Specified by:
init in interface StageWrapperIF

destroy

public void destroy()
             throws java.lang.Exception
Destroy this stage.
Specified by:
destroy in interface StageWrapperIF

getEventHandler

public EventHandlerIF getEventHandler()
Return the event handler associated with this stage.
Specified by:
getEventHandler in interface StageWrapperIF

getStage

public StageIF getStage()
Return the stage handle for this stage.
Specified by:
getStage in interface StageWrapperIF

getSource

public SourceIF getSource()
Return the set of sources from which events should be pulled to pass to this EventHandlerIF.
Specified by:
getSource in interface StageWrapperIF

getThreadManager

public ThreadManagerIF getThreadManager()
Return the thread manager which will run this stage.
Specified by:
getThreadManager in interface StageWrapperIF

getStats

StageStats getStats()
Return execution statistics for this stage.

toString

public java.lang.String toString()
Overrides:
toString in class java.lang.Object

More information: http://www.cs.berkeley.edu/~mdw/proj/seda/