Interface IShutdownObserver
- All Known Implementing Classes:
- LateralTCPListener,- UDPDiscoveryReceiver,- UDPDiscoveryService
public interface IShutdownObserver
This interface is required of all shutdown observers.  These observers
 can observer ShutdownObservable objects.  The CacheManager is the primary
 observable that this is intended for.
 
Most shutdown operations will occur outside this framework for now. The initial goal is to allow background threads that are not reachable through any reference that the cache manager maintains to be killed on shutdown.
- 
Method SummaryModifier and TypeMethodDescriptionvoidshutdown()Tells the observer that the observable has received a shutdown command.
- 
Method Details- 
shutdownvoid shutdown()Tells the observer that the observable has received a shutdown command.
 
-