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

    Modifier and Type
    Method
    Description
    boolean
    pass(de.uplanet.lucy.server.monitor.log.IReportEntry p_entry)
    Filter report entries.
  • Method Details

    • 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.