SObjectizer 5.8
Loading...
Searching...
No Matches
ds_timer_thread_stats.cpp
Go to the documentation of this file.
1/*
2 * SObjectizer-5
3 */
4
5/*!
6 * \since
7 * v.5.5.4
8 *
9 * \file
10 * \brief A data source class for run-time monitoring of timer_thread.
11 */
12
13#include <so_5/stats/impl/ds_timer_thread_stats.hpp>
14
15#include <so_5/stats/messages.hpp>
16#include <so_5/stats/std_names.hpp>
17
18#include <so_5/send_functions.hpp>
19
20namespace so_5 {
21
22namespace stats {
23
24namespace impl {
25
26//
27// ds_timer_thread_stats_t
28//
33
34void
50
51} /* namespace impl */
52
53} /* namespace stats */
54
55} /* namespace so_5 */
An interface for environment_infrastructure entity.
virtual timer_thread_stats_t query_timer_thread_stats()=0
Query run-time statistics for timer (thread or manager).
A data source for distributing information about timer_thread.
ds_timer_thread_stats_t(so_5::environment_infrastructure_t &what)
void distribute(const mbox_t &distribution_mbox) override
Send appropriate notification about the current value.
so_5::environment_infrastructure_t & m_what
Internal implementation of run-time monitoring and statistics related stuff.
Declarations of messages used by run-time monitoring and statistics.
Definition messages.hpp:36
Predefined prefixes of data-sources.
Definition std_names.hpp:23
SO_5_FUNC prefix_t timer_thread()
Prefix of data sources with statistics for timer thread.
Definition std_names.cpp:34
Predefined suffixes of data-sources.
Definition std_names.hpp:55
SO_5_FUNC suffix_t timer_periodic_count()
Suffix for data source with count of periodic timers.
SO_5_FUNC suffix_t timer_single_shot_count()
Suffix for data source with count of single-shot timers.
Definition std_names.cpp:96
All stuff related to run-time monitoring and statistics.
Private part of message limit implementation.
Definition agent.cpp:33
void send(Target &&to, Args &&... args)
A utility function for creating and delivering a message or a signal.
A message with value of some quantity.
Definition messages.hpp:60
std::size_t m_periodic_count
Quantity of periodic timers.
Definition timers.hpp:125
std::size_t m_single_shot_count
Quantity of single-shot timers.
Definition timers.hpp:122