Public Member Functions | |
void | addAppender (const AppenderPtr &newAppender) |
void | append (const spi::LoggingEventPtr &event) |
void | close () |
AppenderList | getAllAppenders () const |
AppenderPtr | getAppender (const String &name) const |
bool | getLocationInfo () const |
bool | isAttached (const AppenderPtr &appender) const |
void | removeAllAppenders () |
void | removeAppender (const AppenderPtr &appender) |
void | removeAppender (const String &name) |
virtual bool | requiresLayout () const |
void | setLocationInfo (bool flag) |
void | setBufferSize (int size) |
int | getBufferSize () const |
Static Public Attributes | |
static int | DEFAULT_BUFFER_SIZE = 128 |
The AsyncAppender will collect the events sent to it and then dispatch them to all the appenders that are attached to it. You can attach multiple appenders to an AsyncAppender.
The AsyncAppender uses a separate thread to serve the events in its bounded buffer.
Important note: The AsyncAppender
can only be script configured using the DOMConfigurator.
|
Add an appender. Implements AppenderAttachable. |
|
Subclasses of Implements AppenderSkeleton. |
|
Close this Implements Appender. |
|
Get all previously added appenders as an AppenderList. Implements AppenderAttachable. |
|
Get an appender by name. Implements AppenderAttachable. |
|
Returns the current value of the BufferSize option. |
|
Returns the current value of the LocationInfo option. |
|
Is the appender passed as parameter attached to this asyncappender? Implements AppenderAttachable. |
|
Remove all previously added appenders. Implements AppenderAttachable. |
|
Remove the appender with the name passed as parameter from the list of appenders. Implements AppenderAttachable. |
|
Remove the appender passed as parameter from the list of appenders. Implements AppenderAttachable. |
|
The Implements Appender. |
|
The BufferSize option takes a non-negative integer value. This integer value determines the maximum size of the bounded buffer. Increasing the size of the buffer is always safe. However, if an existing buffer holds unwritten elements, then decreasing the buffer size will result in event loss. Nevertheless, while script configuring the AsyncAppender, it is safe to set a buffer size smaller than the default buffer size because configurators guarantee that an appender cannot be used before being completely configured. |
|
The LocationInfo option takes a boolean value. By default, it is set to false which means there will be no effort to extract the location information related to the event. As a result, the event that will be ultimately logged will likely to contain the wrong location information (if present in the log format). Location information extraction is comparatively very slow and should be avoided unless performance is not a concern. |
|
The default buffer size is set to 128 events. |