Qore Logger Module Reference 0.4
|
Implements appender which does nothing. More...
#include <Logger.qm.dox.h>
Public Member Methods | |
processEventImpl (int type, auto params) | |
Processes the event to the physical target. More... | |
Public Member Methods inherited from Logger::LoggerAppender | |
addFilter (LoggerFilter filter, bool top=False) | |
Adds a filter to the chain. More... | |
close () | |
Releases any resources allocated by the appender and closes it. | |
constructor (*string name) | |
Creates the object. More... | |
list< LoggerFilter > | getFilters () |
Returns the filter chain as a list. More... | |
string | getName () |
Returns the appender name. | |
*LoggerAppenderQueue | getQueue () |
Returns async queue or NOTHING when events are processed synchronously. | |
bool | isOpen () |
Returns True if the appender is open and therefore active. | |
open () | |
Opens logging resources. More... | |
bool | post (LoggerEvent event) |
Posts the given event to the output queue. More... | |
processEvent (int type, auto params) | |
Processes an event to the physical target. More... | |
abstract | processEventImpl (int type, auto params) |
Processes the event to the physical target. More... | |
removeAllFilters () | |
Clears the filter chain by removing all filters. | |
removeFilter (LoggerFilter filter) | |
Removes the given filter from the filter chain. More... | |
setQueue (*LoggerAppenderQueue queue) | |
Sets the appender queue. More... | |
Private Member Methods | |
auto | serializeImpl (LoggerEvent event) |
Serializes the given event to put in the queue or write to the target device. More... | |
Private Member Methods inherited from Logger::LoggerAppender | |
*object | ensureAtomicOperations (int type) |
Returns an object that can be used to ensure atomic operations for appender operations. | |
RWLock | lock () |
The lock to ensure proper serialization with concurrent access. | |
bool | pushEvent (int type, auto params) |
Pushes the given event on the queue or calls processEvent() in case of synchronous processing. More... | |
abstract auto | serializeImpl (LoggerEvent event) |
Serializes the given event to put in the queue or write to the target device. More... | |
Additional Inherited Members | |
Public Attributes inherited from Logger::LoggerAppender | |
const | EVENT_CLOSE = 3 |
close event | |
const | EVENT_LOG = 2 |
logging event | |
const | EVENT_OPEN = 1 |
open event | |
Implements appender which does nothing.
All events posted to the appender are silently ignored
|
virtual |
Processes the event to the physical target.
Must be implemented by non-abstract subclasses
type | see "EVENT_xxx" constants |
params | processing parameters |
Implements Logger::LoggerAppender.
|
privatevirtual |
Serializes the given event to put in the queue or write to the target device.
The appender implementaion can define any format for serialization. The data are passed to processEvent() method in the params
argument when type
is EVENT_LOG
.
Implements Logger::LoggerAppender.