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