Suspend the current thread until the specified absolute time point.

Synopsis

Declared in <bslmt_threadutil.h>

template<
    class CLOCK,
    class DURATION>
static
void
sleepUntil(bsl::chrono::time_point<CLOCK, DURATION> const& absoluteTime);

Description

Suspend execution of the current thread until the specified absoluteTime, which is an absolute time represented as an interval from some epoch, determined by the clock associated with the time point. The behavior is undefined unless absoluteTime represents a time after January 1, 1970 and before the end of December 31, 9999. Note that the actual time suspended depends on many factors including system scheduling and system timer resolution.

Parameters

Name

Description

absoluteTime

absolute time point at which to resume

Created with MrDocs