Interface Output

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 Type
    Method
    Description
    void
    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

      void write(LogHandler loghandler, String event)
      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

      void write(InternalEventManager internalEventManager, String event)
      Writes the given event to the log file.
      Parameters:
      internalEventManager - the InternalEventManager to use for writing the event.
      event - the event to write.