Interface RolloverListener
-
public interface RolloverListener
Implementations of this interface that are registered with the RollingFileManager will be notified before and after a rollover occurs. This is a synchronous call so Listeners should exit the methods as fast as possible. It is recommended that they simply notify some other already active thread.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description void
rolloverComplete(String fileName)
Called after rollover.void
rolloverTriggered(String fileName)
Called before rollover.
-