Boost C++ Libraries

PrevUpHomeNext

Class run_func

boost::log::sinks::asynchronous_sink::run_func — Function object to run the log record feeding thread.

Synopsis

// In header: <boost/log/sinks/async_frontend.hpp>



// Function object to run the log record feeding thread.

class run_func {
public:
  // types
  typedef void result_type;

  // public member functions
  explicit run_func(asynchronous_sink *) noexcept;
  result_type operator()() const;
};

Description

run_func public member functions

  1. explicit run_func(asynchronous_sink * self) noexcept;
  2. result_type operator()() const;

PrevUpHomeNext