Interface ILogFilter

  • Functional Interface:
    This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

    @FunctionalInterface
    public interface ILogFilter
    • Method Summary

      All Methods Instance Methods Abstract Methods 
      Modifier and Type Method Description
      boolean pass​(de.uplanet.lucy.server.monitor.log.IReportEntry p_entry)
      Filter report entries.
    • Method Detail

      • pass

        boolean pass​(de.uplanet.lucy.server.monitor.log.IReportEntry p_entry)
        Filter report entries.
        Parameters:
        p_entry - The entry to be filtered.
        Returns:
        true if the given report entry passes the filter, false otherwise.