xtd 0.2.0
Loading...
Searching...
No Matches
timeout.h
Go to the documentation of this file.
1
4#pragma once
5#include "../core_export.h"
6#include "../static.h"
7#include "../time_span.h"
8#include "../types.h"
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.h: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.h:46
#define static_
This keyword is use to represent a static object. A static object can't be instantiated (constructors...
Definition static.h:37
#define core_export_
Define shared library export.
Definition core_export.h:13
int32_t int32
Represents a 32-bit signed integer.
Definition int32.h:23
The xtd namespace contains all fundamental classes to access Hardware, Os, System,...
Definition xtd_about_box.h:10
Represents a time interval.
Definition time_span.h:29