Package ch.qos.logback.core
Class AsyncAppenderBase<E>
- java.lang.Object
-
- ch.qos.logback.core.spi.ContextAwareBase
-
- ch.qos.logback.core.UnsynchronizedAppenderBase<E>
-
- ch.qos.logback.core.AsyncAppenderBase<E>
-
- Type Parameters:
E-
- All Implemented Interfaces:
Appender<E>,AppenderAttachable<E>,ContextAware,FilterAttachable<E>,LifeCycle
- Direct Known Subclasses:
AsyncAppender
public class AsyncAppenderBase<E> extends UnsynchronizedAppenderBase<E> implements AppenderAttachable<E>
This appender and derived classes, log events asynchronously. In order to avoid loss of logging events, this appender should be closed. It is the user's responsibility to close appenders, typically at the end of the application lifecycle. This appender buffers events in aBlockingQueue.AsyncAppenderBase.Workerthread created by this appender takes events from the head of the queue, and dispatches them to the single appender attached to this appender.Please refer to the logback manual for further information about this appender.
- Since:
- 1.0.4
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description (package private) classAsyncAppenderBase.Worker
-
Field Summary
Fields Modifier and Type Field Description (package private) AppenderAttachableImpl<E>aai(package private) intappenderCount(package private) java.util.concurrent.BlockingQueue<E>blockingQueuestatic intDEFAULT_MAX_FLUSH_TIMEThe default maximum queue flush time allowed during appender stop.static intDEFAULT_QUEUE_SIZEThe default buffer size.(package private) intdiscardingThreshold(package private) intmaxFlushTime(package private) booleanneverBlock(package private) intqueueSize(package private) static intUNDEFINED(package private) AsyncAppenderBase.Workerworker-
Fields inherited from class ch.qos.logback.core.UnsynchronizedAppenderBase
ALLOWED_REPEATS, name, started
-
Fields inherited from class ch.qos.logback.core.spi.ContextAwareBase
context
-
-
Constructor Summary
Constructors Constructor Description AsyncAppenderBase()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description voidaddAppender(Appender<E> newAppender)Add an appender.protected voidappend(E eventObject)voiddetachAndStopAllAppenders()Detach and processPriorToRemoval all previously added appenders.booleandetachAppender(Appender<E> eAppender)Detach the appender passed as parameter from the list of appenders.booleandetachAppender(java.lang.String name)Detach the appender with the name passed as parameter from the list of appenders.Appender<E>getAppender(java.lang.String name)Get an appender by name.intgetDiscardingThreshold()intgetMaxFlushTime()intgetNumberOfElementsInQueue()Returns the number of elements currently in the blocking queue.intgetQueueSize()intgetRemainingCapacity()The remaining capacity available in the blocking queue.booleanisAttached(Appender<E> eAppender)Returnstrueif the specified appender is in list of attached attached,falseotherwise.protected booleanisDiscardable(E eventObject)Is the eventObject passed as parameter discardable? The base class's implementation of this method always returns 'false' but sub-classes may (and do) override this method.booleanisNeverBlock()private booleanisQueueBelowDiscardingThreshold()java.util.Iterator<Appender<E>>iteratorForAppenders()Get an iterator for appenders contained in the parent object.protected voidpreprocess(E eventObject)Pre-process the event prior to queueing.private voidput(E eventObject)private voidputUninterruptibly(E eventObject)voidsetDiscardingThreshold(int discardingThreshold)voidsetMaxFlushTime(int maxFlushTime)voidsetNeverBlock(boolean neverBlock)voidsetQueueSize(int queueSize)voidstart()voidstop()-
Methods inherited from class ch.qos.logback.core.UnsynchronizedAppenderBase
addFilter, clearAllFilters, doAppend, getCopyOfAttachedFiltersList, getFilterChainDecision, getName, isStarted, setName, toString
-
Methods inherited from class ch.qos.logback.core.spi.ContextAwareBase
addError, addError, addInfo, addInfo, addStatus, addWarn, addWarn, getContext, getDeclaredOrigin, getStatusManager, setContext
-
Methods inherited from class java.lang.Object
clone, equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait
-
Methods inherited from interface ch.qos.logback.core.spi.ContextAware
addError, addError, addInfo, addInfo, addStatus, addWarn, addWarn, getContext, setContext
-
-
-
-
Field Detail
-
aai
AppenderAttachableImpl<E> aai
-
blockingQueue
java.util.concurrent.BlockingQueue<E> blockingQueue
-
DEFAULT_QUEUE_SIZE
public static final int DEFAULT_QUEUE_SIZE
The default buffer size.- See Also:
- Constant Field Values
-
queueSize
int queueSize
-
appenderCount
int appenderCount
-
UNDEFINED
static final int UNDEFINED
- See Also:
- Constant Field Values
-
discardingThreshold
int discardingThreshold
-
neverBlock
boolean neverBlock
-
worker
AsyncAppenderBase.Worker worker
-
DEFAULT_MAX_FLUSH_TIME
public static final int DEFAULT_MAX_FLUSH_TIME
The default maximum queue flush time allowed during appender stop. If the worker takes longer than this time it will exit, discarding any remaining items in the queue- See Also:
- Constant Field Values
-
maxFlushTime
int maxFlushTime
-
-
Method Detail
-
isDiscardable
protected boolean isDiscardable(E eventObject)
Is the eventObject passed as parameter discardable? The base class's implementation of this method always returns 'false' but sub-classes may (and do) override this method.Note that only if the buffer is nearly full are events discarded. Otherwise, when the buffer is "not full" all events are logged.
- Parameters:
eventObject-- Returns:
- - true if the event can be discarded, false otherwise
-
preprocess
protected void preprocess(E eventObject)
Pre-process the event prior to queueing. The base class does no pre-processing but sub-classes can override this behavior.- Parameters:
eventObject-
-
start
public void start()
- Specified by:
startin interfaceLifeCycle- Overrides:
startin classUnsynchronizedAppenderBase<E>
-
stop
public void stop()
- Specified by:
stopin interfaceLifeCycle- Overrides:
stopin classUnsynchronizedAppenderBase<E>
-
append
protected void append(E eventObject)
- Specified by:
appendin classUnsynchronizedAppenderBase<E>
-
isQueueBelowDiscardingThreshold
private boolean isQueueBelowDiscardingThreshold()
-
put
private void put(E eventObject)
-
putUninterruptibly
private void putUninterruptibly(E eventObject)
-
getQueueSize
public int getQueueSize()
-
setQueueSize
public void setQueueSize(int queueSize)
-
getDiscardingThreshold
public int getDiscardingThreshold()
-
setDiscardingThreshold
public void setDiscardingThreshold(int discardingThreshold)
-
getMaxFlushTime
public int getMaxFlushTime()
-
setMaxFlushTime
public void setMaxFlushTime(int maxFlushTime)
-
getNumberOfElementsInQueue
public int getNumberOfElementsInQueue()
Returns the number of elements currently in the blocking queue.- Returns:
- number of elements currently in the queue.
-
setNeverBlock
public void setNeverBlock(boolean neverBlock)
-
isNeverBlock
public boolean isNeverBlock()
-
getRemainingCapacity
public int getRemainingCapacity()
The remaining capacity available in the blocking queue.- Returns:
- the remaining capacity
-
addAppender
public void addAppender(Appender<E> newAppender)
Description copied from interface:AppenderAttachableAdd an appender.- Specified by:
addAppenderin interfaceAppenderAttachable<E>
-
iteratorForAppenders
public java.util.Iterator<Appender<E>> iteratorForAppenders()
Description copied from interface:AppenderAttachableGet an iterator for appenders contained in the parent object.- Specified by:
iteratorForAppendersin interfaceAppenderAttachable<E>
-
getAppender
public Appender<E> getAppender(java.lang.String name)
Description copied from interface:AppenderAttachableGet an appender by name.- Specified by:
getAppenderin interfaceAppenderAttachable<E>
-
isAttached
public boolean isAttached(Appender<E> eAppender)
Description copied from interface:AppenderAttachableReturnstrueif the specified appender is in list of attached attached,falseotherwise.- Specified by:
isAttachedin interfaceAppenderAttachable<E>
-
detachAndStopAllAppenders
public void detachAndStopAllAppenders()
Description copied from interface:AppenderAttachableDetach and processPriorToRemoval all previously added appenders.- Specified by:
detachAndStopAllAppendersin interfaceAppenderAttachable<E>
-
detachAppender
public boolean detachAppender(Appender<E> eAppender)
Description copied from interface:AppenderAttachableDetach the appender passed as parameter from the list of appenders.- Specified by:
detachAppenderin interfaceAppenderAttachable<E>
-
detachAppender
public boolean detachAppender(java.lang.String name)
Description copied from interface:AppenderAttachableDetach the appender with the name passed as parameter from the list of appenders.- Specified by:
detachAppenderin interfaceAppenderAttachable<E>
-
-