MCPcopy Create free account
hub / github.com/CobaltFusion/DebugViewPP / CallAt

Method CallAt

CobaltFusion/Executor.cpp:193–201  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

191}
192
193ScheduledCall TimedExecutor::CallAt(const TimePoint& at, std::function<void ()> fn)
194{
195 unsigned id = GetCallId();
196 Add([this, id, at, fn]()
197 {
198 m_scheduledCalls.Insert(TimedExecutor::CallData(id, at, fn));
199 });
200 return MakeScheduledCall(id);
201}
202
203ScheduledCall TimedExecutor::CallAfter(const Duration& interval, std::function<void ()> fn)
204{

Callers 4

operator()Method · 0.45
PendingCallMethod · 0.45
BOOST_AUTO_TEST_CASEFunction · 0.45
TestGuiExecutorImplFunction · 0.45

Calls 2

CallDataClass · 0.85
InsertMethod · 0.45

Tested by 2

BOOST_AUTO_TEST_CASEFunction · 0.36
TestGuiExecutorImplFunction · 0.36