Public Member Functions | |
ManualTriggeringPolicy () | |
virtual bool | isTriggeringEvent (Appender *appender, const log4cxx::spi::LoggingEventPtr &event, const LogString &filename, size_t fileLength) |
Determines if a rollover may be appropriate at this time. | |
void | activateOptions (log4cxx::helpers::Pool &) |
Activate the options that were previously set with calls to option setters. | |
void | setOption (const LogString &option, const LogString &value) |
Set option to value . |
virtual bool isTriggeringEvent | ( | Appender * | appender, | |
const log4cxx::spi::LoggingEventPtr & | event, | |||
const LogString & | filename, | |||
size_t | fileLength | |||
) | [virtual] |
Determines if a rollover may be appropriate at this time.
If true is returned, RolloverPolicy.rollover will be called but it can determine that a rollover is not warranted.
appender | A reference to the appender. | |
event | A reference to the currently event. | |
filename | The filename for the currently active log file. | |
fileLength | Length of the file in bytes. |
Implements TriggeringPolicy.
void activateOptions | ( | log4cxx::helpers::Pool & | p | ) | [virtual] |
Activate the options that were previously set with calls to option setters.
This allows to defer activiation of the options until all options have been set. This is required for components which have related options that remain ambigous until all are set.
For example, the FileAppender has the File and Append options both of which are ambigous until the other is also set.
Implements OptionHandler.
Set option
to value
.
The handling of each option depends on the OptionHandler instance. Some options may become active immediately whereas other may be activated only when activateOptions is called.
Implements OptionHandler.