#include <StringQueueAppender.hh>
Inheritance diagram for log4cpp::StringQueueAppender:
Public Methods | |
StringQueueAppender (const std::string &name) | |
virtual | ~StringQueueAppender () |
virtual bool | reopen () |
Reopens the output destination of this Appender, e.g. More... | |
virtual void | close () |
Release any resources allocated within the appender such as file handles, network connections, etc. More... | |
virtual size_t | queueSize () const |
Return the current size of the message queue. More... | |
virtual std::queue< std::string > & | getQueue () |
Return the queue to which the Appends adds messages. More... | |
virtual const std::queue< std::string > & | getQueue () const |
Return the queue to which the Appends adds messages. More... | |
virtual std::string | popMessage () |
Pop the oldest log message from the front of the queue. More... | |
Protected Methods | |
virtual void | _append (const LoggingEvent &event) |
Appends the LoggingEvent to the queue. More... | |
Protected Attributes | |
std::queue< std::string > | _queue |
Its primary use is in test cases, but it may be useful elsewhere as well.
|
|
|
|
|
Appends the LoggingEvent to the queue.
Implements log4cpp::AppenderSkeleton. |
|
Release any resources allocated within the appender such as file handles, network connections, etc.
Implements log4cpp::AppenderSkeleton. |
|
Return the queue to which the Appends adds messages.
|
|
Return the queue to which the Appends adds messages.
|
|
Pop the oldest log message from the front of the queue.
|
|
Return the current size of the message queue. Shorthand for getQueue().size().
|
|
Reopens the output destination of this Appender, e.g. the logfile or TCP socket.
Reimplemented from log4cpp::AppenderSkeleton. |
|
|