com.ryanm.logging
Interface SourceRegistrationListener

All Known Implementing Classes:
StringSink.StringSinkConfigurator

public interface SourceRegistrationListener

Objects that want to be notified when logging sources are registered and deregistered should implement this interface and add themselves to the LoggingManager.

Author:
ryanm

Method Summary
 void deregistered(java.lang.String source)
          Called when a source is removed from the LoggingManager
 void registered(java.lang.String source)
          Called when a source is registered with the LoggingManager
 

Method Detail

deregistered

void deregistered(java.lang.String source)
Called when a source is removed from the LoggingManager

Parameters:
source - the removed source

registered

void registered(java.lang.String source)
Called when a source is registered with the LoggingManager

Parameters:
source - The added source