seda.sandStorm.api
Interface SignalMgrIF

All Known Implementing Classes:
SignalMgr

public interface SignalMgrIF

This class defines an interface for delivery of systemwide 'signals', informational events that stages may wish to use for initialization or control.

See Also:
SignalIF

Method Summary
 void deregister(SignalIF signalType, SinkIF sink)
          Deregister for the given signal type.
 void register(SignalIF signalType, SinkIF sink)
          Register for the given signal type.
 

Method Detail

register

void register(SignalIF signalType,
              SinkIF sink)
Register for the given signal type. When the signal is triggered, an object of the given type (although not necessarily the same object instance) will be delivered to the given SinkIF.


deregister

void deregister(SignalIF signalType,
                SinkIF sink)
Deregister for the given signal type.