xtd 0.2.0
Loading...
Searching...
No Matches
timeout.hpp
Go to the documentation of this file.
1
4#pragma once
5#include "../core_export.hpp"
6#include "../static.hpp"
7#include "../time_span.hpp"
8#include "../types.hpp"
9
11namespace xtd {
13 namespace threading {
34 public:
36
41 static constexpr int32 infinite = -1;
42
48 };
49 }
50}
Contains a constant used to specify an infinite amount of time. This class cannot be inherited.
Definition timeout.hpp:33
static const time_span infinite_time_span
A constant used to specify an infinite waiting period, for methods that accept a TimeSpan parameter.
Definition timeout.hpp:46
#define static_
This keyword is use to represent a static object. A static object can't be instantiated (constructors...
Definition static.hpp:37
#define core_export_
Define shared library export.
Definition core_export.hpp:13
int32_t int32
Represents a 32-bit signed integer.
Definition int32.hpp:23
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.hpp:10
Represents a time interval.
Definition time_span.hpp:29