[#BloombergLP-bslmt-ThreadUtil-sleepUntil-0be] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bslmt.adoc[bslmt]::xref:BloombergLP/bslmt/ThreadUtil.adoc[ThreadUtil]::sleepUntil :relfileprefix: ../../../ :mrdocs: `sleepUntil` overloads == Synopses Declared in `<bslmt_threadutil.h>` 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. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class CLOCK, class DURATION> static void xref:BloombergLP/bslmt/ThreadUtil/sleepUntil-0b1.adoc[sleepUntil](bsl::chrono::time_point<CLOCK, DURATION> const& absoluteTime); ---- [.small]#xref:BloombergLP/bslmt/ThreadUtil/sleepUntil-0b1.adoc[_» more..._]# Suspend execution of the current thread until the specified `absoluteTime`, or an interrupting signal is received. Optionally specify `clockType` which determines the epoch from which the interval `absoluteTime` is measured (see {Supported Clock‐Types} in the component documentation). The behavior is undefined unless `absoluteTime` represents a time after January 1, 1970 and before the end of December 31, 9999 (i.e., a time interval greater than or equal to 0, and less than 253,402,300,800 seconds). Note that the actual time suspended depends on many factors including system scheduling and system timer resolution. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- static void xref:BloombergLP/bslmt/ThreadUtil/sleepUntil-0c.adoc[sleepUntil]( xref:BloombergLP/bsls/TimeInterval.adoc[bsls::TimeInterval] const& absoluteTime, xref:BloombergLP/bsls/SystemClockType/Enum.adoc[bsls::SystemClockType::Enum] clockType = bsls::SystemClockType::e_REALTIME); ---- [.small]#xref:BloombergLP/bslmt/ThreadUtil/sleepUntil-0c.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#