Package com.iizix
Interface ILoggerRedirector
- All Known Implementing Classes:
Console
- 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 ILoggerRedirectorThe LoggerRedirector interface is used by the logger to redirect a log event to a source, e.g. from client to be logged in the server.
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidonEventLogged(LogEntry entry)Called when an event is logged.
Method Detail
onEventLogged
void onEventLogged(LogEntry entry)
Called when an event is logged.- Parameters:
entry- The log entry.