com.ryanm.logging
Interface AssociationListener


public interface AssociationListener

Interface for objects that wish to be appraised of changes in the associations between sources and sinks

Author:
ryanm

Method Summary
 void associationBroken(java.lang.String source, LogSink sink)
          Called when an association between a source and a sink is broken
 void associationMade(java.lang.String source, LogSink sink)
          Called when an association is made between a source and a sink
 

Method Detail

associationMade

void associationMade(java.lang.String source,
                     LogSink sink)
Called when an association is made between a source and a sink

Parameters:
source - The source
sink - The sink

associationBroken

void associationBroken(java.lang.String source,
                       LogSink sink)
Called when an association between a source and a sink is broken

Parameters:
source - The source
sink - The sink