- All Known Implementing Classes:
LogOutput
,PrintOutput
,SocketOutput
public interface Output
The Output interface is used to define the methods that must be implemented by all Output classes.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
write
(LogHandler loghandler, String event) Writes the given event to the internal log file.void
write
(InternalEventManager internalEventManager, String event) Writes the given event to the log file.
-
Method Details
-
write
Writes the given event to the internal log file.- Parameters:
loghandler
- the LogHandler to use for writing the event.event
- the event to write.
-
write
Writes the given event to the log file.- Parameters:
internalEventManager
- the InternalEventManager to use for writing the event.event
- the event to write.
-