Package ch.qos.logback.core.spi
Interface AppenderAttachable<E>
- All Known Implementing Classes:
AppenderAttachableImpl
,AsyncAppender
,AsyncAppenderBase
,Logger
Deprecated.
This internal logback API is not supported by AEM as a Cloud Service.
Interface for attaching appenders to objects.
-
Method Summary
Modifier and TypeMethodDescriptionvoid
addAppender
(Appender<E> newAppender) Deprecated.Add an appender.void
Deprecated.Detach and processPriorToRemoval all previously added appenders.boolean
detachAppender
(Appender<E> appender) Deprecated.Detach the appender passed as parameter from the list of appenders.boolean
detachAppender
(String name) Deprecated.Detach the appender with the name passed as parameter from the list of appenders.getAppender
(String name) Deprecated.Get an appender by name.boolean
isAttached
(Appender<E> appender) Deprecated.Returnstrue
if the specified appender is in list of attached attached,false
otherwise.Deprecated.Get an iterator for appenders contained in the parent object.
-
Method Details
-
addAppender
Deprecated.Add an appender. -
iteratorForAppenders
Deprecated.Get an iterator for appenders contained in the parent object. -
getAppender
Deprecated.Get an appender by name. -
isAttached
Deprecated.Returnstrue
if the specified appender is in list of attached attached,false
otherwise. -
detachAndStopAllAppenders
void detachAndStopAllAppenders()Deprecated.Detach and processPriorToRemoval all previously added appenders. -
detachAppender
Deprecated.Detach the appender passed as parameter from the list of appenders. -
detachAppender
Deprecated.Detach the appender with the name passed as parameter from the list of appenders.
-