Thread System 0.3.1
High-performance C++20 thread pool with work stealing and DAG scheduling
Loading...
Searching...
No Matches
execution_event.h File Reference

Job execution event types and listener interface for tracing. More...

#include <chrono>
#include <cstdint>
#include <functional>
#include <iomanip>
#include <memory>
#include <optional>
#include <sstream>
#include <string>
#include <thread>
Include dependency graph for execution_event.h:
This graph shows which files directly or indirectly include this file:

Go to the source code of this file.

Classes

struct  kcenon::thread::diagnostics::job_execution_event
 Event data for job execution tracing. More...
 
class  kcenon::thread::diagnostics::execution_event_listener
 Interface for receiving job execution events. More...
 

Namespaces

namespace  kcenon
 
namespace  kcenon::thread
 Core threading foundation of the thread system library.
 
namespace  kcenon::thread::diagnostics
 

Enumerations

enum class  kcenon::thread::diagnostics::event_type {
  kcenon::thread::diagnostics::event_type::enqueued , kcenon::thread::diagnostics::event_type::dequeued , kcenon::thread::diagnostics::event_type::started , kcenon::thread::diagnostics::event_type::completed ,
  kcenon::thread::diagnostics::event_type::failed , kcenon::thread::diagnostics::event_type::cancelled , kcenon::thread::diagnostics::event_type::retried
}
 Type of job execution event. More...
 

Functions

auto kcenon::thread::diagnostics::event_type_to_string (event_type type) -> std::string
 Converts event_type to human-readable string.
 

Detailed Description

Job execution event types and listener interface for tracing.

See also
thread_pool_diagnostics

Definition in file execution_event.h.