All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.dua3.utility.logging.LogEntryHandler Maven / Gradle / Ivy

package com.dua3.utility.logging;

/**
 * Represents a functional interface for handling log entries.
 */
@FunctionalInterface
public interface LogEntryHandler {
    /**
     * Handles a log entry.
     *
     * @param entry the log entry to be handled
     */
    void handleEntry(LogEntry entry);
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy