Interface EventLogger
-
- All Known Implementing Classes:
EventLoggerImpl
public interface EventLoggerLogs events. Stores the whole log in case no view was open.- Since:
- 6.13.0
- Author:
- Clément Fournier
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description org.reactfx.collection.LiveList<LogEntry>getLog()Returns the full log.voidlogEvent(LogEntry event)Logs a new event.default org.reactfx.value.Val<java.lang.Integer>numNewLogEntriesProperty()Number of log entries that were not yet examined by the user.
-
-
-
Method Detail
-
numNewLogEntriesProperty
default org.reactfx.value.Val<java.lang.Integer> numNewLogEntriesProperty()
Number of log entries that were not yet examined by the user.
-
logEvent
void logEvent(LogEntry event)
Logs a new event.
-
getLog
org.reactfx.collection.LiveList<LogEntry> getLog()
Returns the full log.
-
-