Interface FileLogger.RolloverHandler<T>

Enclosing class:
FileLogger<T>

public static interface FileLogger.RolloverHandler<T>
Define a handler to be called when the logger rolls over to a new file.
Author:
Andrew Pavlin, KA2DDO
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    postprocessLogFile(File lastLogFile, FileLogger<T> fileLogger)
    Post-process the specified log file that is no longer used by the FileLogger.
  • Method Details

    • postprocessLogFile

      void postprocessLogFile(File lastLogFile, FileLogger<T> fileLogger)
      Post-process the specified log file that is no longer used by the FileLogger. The specified file will never be accessed again by the logger as it is for a past logging interval.
      Parameters:
      lastLogFile - File of previous log file
      fileLogger - FileLogger doing the callback