Apache Log4cxx: asyncappender.h Source File (original) (raw)

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18#ifndef _LOG4CXX_ASYNC_APPENDER_H

19#define _LOG4CXX_ASYNC_APPENDER_H

20

24

25namespace LOG4CXX_NS

26{

28

93{

94 protected:

95 struct AsyncAppenderPriv;

96

97 public:

104

105

109

114

122

127 helpers::Pool& pool1) override;

128

134 void append(const spi::LoggingEventPtr& event, helpers::Pool& p) override;

135

142

148

156

167

171

176

187

193

198

205

212

218

226

235

236

248

249

250 private:

253

257 void dispatch();

258

259};

261}

262

263#endif

264

#define LOG4CXX_16_VIRTUAL_SPECIFIER

Definition appenderattachable.h:99

AppenderSkeleton(LOG4CXX_PRIVATE_PTR(AppenderSkeletonPrivate) priv)

The AsyncAppender decouples logging event creation from output by processing log events asynchronousl...

Definition asyncappender.h:93

void setLocationInfo(bool flag)

The LocationInfo attribute is provided for compatibility with log4j and has no effect on the log outp...

AsyncAppender()

Create new instance.

void removeAllAppenders() override

Removes and closes all attached appenders.

void setOption(const LogString &option, const LogString &value) override

Set option to value.

void append(const spi::LoggingEventPtr &event, helpers::Pool &p) override

Add event to a ring buffer.

bool requiresLayout() const override

Return false.

bool getBlocking() const

Gets whether appender should block calling thread when buffer is full.

void setBlocking(bool value)

Sets whether appender should wait if there is no space available in the event buffer or immediately r...

void replaceAppenders(const AppenderList &newList) LOG4CXX_16_VIRTUAL_SPECIFIER

Replace any previously added appenders with newList.

AppenderList getAllAppenders() const override

Get iterator over attached appenders.

void removeAppender(const AppenderPtr appender) override

Removes an appender.

void doAppend(const spi::LoggingEventPtr &event, helpers::Pool &pool1) override

Call AppenderSkeleton::doAppendImpl without acquiring a lock.

bool replaceAppender(const AppenderPtr &oldAppender, const AppenderPtr &newAppender) LOG4CXX_16_VIRTUAL_SPECIFIER

Replace oldAppender with newAppender.

AppenderPtr getAppender(const LogString &name) const override

Get appender by name.

void addAppender(const AppenderPtr newAppender) override

Ensure newAppender receives any logging event added to this appender.

int getBufferSize() const

Gets the current buffer size.

void close() override

Close this AsyncAppender by interrupting the dispatcher thread which will process all pending events ...

void setBufferSize(int size)

The BufferSize option takes a non-negative integer value.

bool isAttached(const AppenderPtr appender) const override

Determines if specified appender is attached.

bool getLocationInfo() const

The current value of the (unused) LocationInfo option.

This Interface is for attaching Appenders to objects.

Definition appenderattachable.h:33

Definition propertysetter.h:27

std::shared_ptr< LoggingEvent > LoggingEventPtr

Definition appender.h:32

LOG4CXX_LIST_DEF(AppenderList, AppenderPtr)

std::basic_string< logchar > LogString

Definition logstring.h:60

LOG4CXX_PTR_DEF(Appender)

std::shared_ptr< Appender > AppenderPtr

Definition basicconfigurator.h:29

#define LOG4CXX_CAST_ENTRY(Interface)

Definition object.h:154

#define END_LOG4CXX_CAST_MAP()

Definition object.h:148

#define DECLARE_LOG4CXX_OBJECT(object)

Definition object.h:41

#define LOG4CXX_CAST_ENTRY_CHAIN(Interface)

Definition object.h:160

#define BEGIN_LOG4CXX_CAST_MAP()

Definition object.h:142