Interface LogListener

All Superinterfaces:
EventListener

public interface LogListener extends EventListener
Subscribes to LogEntry objects from the LogReaderService.

A LogListener object may be registered with the Log Reader Service using the LogReaderService.addLogListener method. After the listener is registered, the logged method will be called for each LogEntry object created. The LogListener object may be unregistered by calling the LogReaderService.removeLogListener method.

Version:
$Revision: 5654 $
See Also:
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    Listener method called for each LogEntry object created.
  • Method Details

    • logged

      void logged(LogEntry entry)
      Listener method called for each LogEntry object created.

      As with all event listeners, this method should return to its caller as soon as possible.

      Parameters:
      entry - A LogEntry object containing log information.
      See Also: