boost::log::sinks::file::rotation_at_time_point
// In header: <boost/log/sinks/text_file_backend.hpp> class rotation_at_time_point { public: // types typedef bool result_type; // construct/copy/destruct explicit rotation_at_time_point(unsigned char, unsigned char, unsigned char); explicit rotation_at_time_point(date_time::weekdays, unsigned char = 0, unsigned char = 0, unsigned char = 0); explicit rotation_at_time_point(gregorian::greg_day, unsigned char = 0, unsigned char = 0, unsigned char = 0); // public member functions bool operator()() const; };
The class represents the time point of log file rotation. One can specify one of three types of time point based rotation:
rotation takes place every day, at the specified time
rotation takes place on the specified day of every week, at the specified time
rotation takes place on the specified day of every month, at the specified time
The time points are considered to be local time.
rotation_at_time_point
public
construct/copy/destructexplicit rotation_at_time_point(unsigned char hour, unsigned char minute, unsigned char second);
Creates a rotation time point of every day at the specified time
Parameters: |
|
explicit rotation_at_time_point(date_time::weekdays wday, unsigned char hour = 0, unsigned char minute = 0, unsigned char second = 0);
Creates a rotation time point of each specified weekday at the specified time
Parameters: |
|
explicit rotation_at_time_point(gregorian::greg_day mday, unsigned char hour = 0, unsigned char minute = 0, unsigned char second = 0);
Creates a rotation time point of each specified day of month at the specified time
Parameters: |
|