Boost C++ Libraries

PrevUpHomeNext

Header <boost/log/sinks/threading_models.hpp>

Andrey Semashev

22.04.2007

The header contains definition of threading models. These models are used to ensure thread safety protocol between sink backends and frontents.

namespace boost {
  namespace log {
    namespace sinks {
      struct threading_model_tag;
      struct single_thread_tag;
      struct frontend_synchronization_tag;
      struct backend_synchronization_tag;
      template<typename TestedT, typename RequiredT> struct is_model_supported;
    }
  }
}

PrevUpHomeNext