[#BloombergLP-bdlmt-EventScheduler-scheduleEventRaw-04] = xref:BloombergLP.adoc[BloombergLP]::xref:BloombergLP/bdlmt.adoc[bdlmt]::xref:BloombergLP/bdlmt/EventScheduler.adoc[EventScheduler]::scheduleEventRaw :relfileprefix: ../../../ :mrdocs: `scheduleEventRaw` overloads == Synopses Declared in `<bdlmt_eventscheduler.h>` Schedule the specified `callback` to be dispatched at the specified `epochTime` truncated to microseconds. Load into the specified `event` pointer a handle that can be used to cancel the event (by invoking `cancelEvent`). The `epochTime` is an _absolute_ time represented as an interval from some epoch, which is determined by the clock indicated at construction (see {Supported Clock Types} in the component documentation). The `event` pointer must be released invoking `releaseEventRaw` when it is no longer needed. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- void xref:BloombergLP/bdlmt/EventScheduler/scheduleEventRaw-01.adoc[scheduleEventRaw]( xref:BloombergLP/bdlmt/EventScheduler/Event.adoc[Event]** event, xref:BloombergLP/bsls/TimeInterval.adoc[bsls::TimeInterval] const& epochTime, xref:bsl/function-0a.adoc[bsl::function<void()>] const& callback); ---- [.small]#xref:BloombergLP/bdlmt/EventScheduler/scheduleEventRaw-01.adoc[_» more..._]# Schedule the specified `callback` to be dispatched at the specified `epochTime` truncated to microseconds. Load into the specified `event` pointer a handle that can be used to cancel the event (by invoking `cancelEvent`). The `epochTime` is an absolute time represented as an interval from some epoch, which is determined by the clock associated with the time point. The `event` pointer must be released invoking `releaseEventRaw` when it is no longer needed. [source,cpp,subs="verbatim,replacements,macros,-callouts"] ---- template< class t_CLOCK, class t_DURATION> void xref:BloombergLP/bdlmt/EventScheduler/scheduleEventRaw-07.adoc[scheduleEventRaw]( xref:BloombergLP/bdlmt/EventScheduler/Event.adoc[Event]** event, bsl::chrono::time_point<t_CLOCK, t_DURATION> const& epochTime, xref:bsl/function-0a.adoc[bsl::function<void()>] const& callback); ---- [.small]#xref:BloombergLP/bdlmt/EventScheduler/scheduleEventRaw-07.adoc[_» more..._]# [.small]#Created with https://www.mrdocs.com[MrDocs]#