Class OnPrintStreamStatusListenerBase

java.lang.Object
ch.qos.logback.core.spi.ContextAwareBase
ch.qos.logback.core.status.OnPrintStreamStatusListenerBase
All Implemented Interfaces:
ContextAware, LifeCycle, StatusListener
Direct Known Subclasses:
OnConsoleStatusListener, OnErrorConsoleStatusListener, OnFileStatusListener

public abstract class OnPrintStreamStatusListenerBase extends ContextAwareBase implements StatusListener, LifeCycle
Print all new incoming status messages on the designated PrintStream.
Author:
Ceki Gülcü
  • Constructor Details

    • OnPrintStreamStatusListenerBase

      public OnPrintStreamStatusListenerBase()
  • Method Details

    • getPrintStream

      protected abstract PrintStream getPrintStream()
      The PrintStream used by derived classes
      Returns:
    • addStatusEvent

      public void addStatusEvent(Status status)
      Specified by:
      addStatusEvent in interface StatusListener
    • start

      public void start()
      Invoking the start method can cause the instance to print status messages created less than value of retrospectiveThresold.
      Specified by:
      start in interface LifeCycle
    • getPrefix

      public String getPrefix()
    • setPrefix

      public void setPrefix(String prefix)
    • setRetrospective

      public void setRetrospective(long retrospective)
    • getRetrospective

      public long getRetrospective()
    • stop

      public void stop()
      Specified by:
      stop in interface LifeCycle
    • isStarted

      public boolean isStarted()
      Specified by:
      isStarted in interface LifeCycle
    • isResetResistant

      public boolean isResetResistant()
      Description copied from interface: StatusListener
      Reset resistant status listeners return true here. Default is false.
      Specified by:
      isResetResistant in interface StatusListener
      Returns:
      whether this listener is reset resistant
    • setResetResistant

      public void setResetResistant(boolean resetResistant)