public class AsyncAppender extends AppenderSkeleton implements AppenderAttachable
AsyncAppender
can only be script
configured using the DOMConfigurator
.
Modifier and Type | Field and Description |
---|---|
static int |
DEFAULT_BUFFER_SIZE
The default buffer size is set to 128 events.
|
closed, errorHandler, headFilter, layout, name, tailFilter, threshold
Constructor and Description |
---|
AsyncAppender()
Create new instance.
|
Modifier and Type | Method and Description |
---|---|
void |
addAppender(Appender newAppender)
Add appender.
|
void |
append(LoggingEvent event)
Subclasses of
AppenderSkeleton should implement this method to perform actual logging. |
void |
close()
Close this
AsyncAppender by interrupting the dispatcher thread which will process all pending events
before exiting. |
Enumeration |
getAllAppenders()
Get iterator over attached appenders.
|
Appender |
getAppender(String name)
Get appender by name.
|
boolean |
getBlocking()
Gets whether appender should block calling thread when buffer is full.
|
int |
getBufferSize()
Gets the current buffer size.
|
boolean |
getLocationInfo()
Gets whether the location of the logging request call should be captured.
|
boolean |
isAttached(Appender appender)
Determines if specified appender is attached.
|
void |
removeAllAppenders()
Removes and closes all attached appenders.
|
void |
removeAppender(Appender appender)
Removes an appender.
|
void |
removeAppender(String name)
Remove appender by name.
|
boolean |
requiresLayout()
Configurators call this method to determine if the appender requires a layout.
|
void |
setBlocking(boolean value)
Sets whether appender should wait if there is no space available in the event buffer or immediately return.
|
void |
setBufferSize(int size)
Sets the number of messages allowed in the event buffer before the calling thread is blocked (if blocking is
true) or until messages are summarized and discarded.
|
void |
setLocationInfo(boolean flag)
The LocationInfo option takes a boolean value.
|
activateOptions, addFilter, clearFilters, doAppend, finalize, getErrorHandler, getFilter, getFirstFilter, getLayout, getName, getThreshold, isAsSevereAsThreshold, setErrorHandler, setLayout, setName, setThreshold
public static final int DEFAULT_BUFFER_SIZE
public void addAppender(Appender newAppender)
addAppender
in interface AppenderAttachable
newAppender
- appender to add, may not be null.public void append(LoggingEvent event)
AppenderSkeleton
should implement this method to perform actual logging. See also
AppenderSkeleton.doAppend
method.append
in class AppenderSkeleton
public void close()
AsyncAppender
by interrupting the dispatcher thread which will process all pending events
before exiting.public Enumeration getAllAppenders()
getAllAppenders
in interface AppenderAttachable
public Appender getAppender(String name)
getAppender
in interface AppenderAttachable
name
- name, may not be null.public boolean getLocationInfo()
public boolean isAttached(Appender appender)
isAttached
in interface AppenderAttachable
appender
- appender.public boolean requiresLayout()
true
, meaning that layout is required, then the configurator will configure an layout using the
configuration information at its disposal. If this method returns
false
, meaning that a layout is not required, then layout
configuration will be skipped even if there is available layout configuration information at the disposal of the
configurator..
In the rather exceptional case, where the appender implementation admits a layout but can also work without it,
then the appender should return
true
.
requiresLayout
in interface Appender
public void removeAllAppenders()
removeAllAppenders
in interface AppenderAttachable
public void removeAppender(Appender appender)
removeAppender
in interface AppenderAttachable
appender
- appender to remove.public void removeAppender(String name)
removeAppender
in interface AppenderAttachable
name
- name.public void setLocationInfo(boolean flag)
flag
- true if location information should be extracted.public void setBufferSize(int size)
size
- buffer size, must be positive.public int getBufferSize()
public void setBlocking(boolean value)
value
- true if appender should wait until available space in buffer.public boolean getBlocking()
Copyright © 1999–2023 QOS.CH Sarl (Switzerland). All rights reserved.