xtd 0.2.0
event_reset_mode.h
Go to the documentation of this file.
1 #pragma once
5 #include "../enum.h"
6 
8 namespace xtd {
10  namespace threading {
22  enum class event_reset_mode {
24  auto_reset = 0,
26  manual_reset = 1,
27  };
28  }
29 }
30 
32 template<> struct xtd::enum_register<xtd::threading::event_reset_mode> {
34 };
When signaled, the xtd::threading::event_wait_handle resets automatically after releasing a single th...
The xtd namespace contains all fundamental classes to access Hardware, Os, System, and more.
Definition: system_report.h:17
std::vector< std::pair< enum_t, xtd::ustring > > enum_collection
Represents a pair of an enum_t value and a string of an enum of type enum_t.
Definition: enum_collection.h:19
When signaled, the xtd::threading::event_wait_handle releases all waiting threads and remains signale...
event_reset_mode
Indicates whether an xtd::threading::event_wait_handle is reset automatically or manually after recei...
Definition: event_reset_mode.h:22
Provides the registration struct for enumerations.
Definition: enum_register.h:36