MCPcopy Create free account
hub / github.com/PlayFab/gsdk / Wait

Method Wait

cpp/cppsdk/ManualResetEvent.cpp:19–23  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

17 }
18
19 void ManualResetEvent::Wait()
20 {
21 std::unique_lock<std::mutex> lock(m_mutex);
22 m_condition.wait(lock, [&]() -> bool { return m_isGateOpen; });
23 }
24
25 bool ManualResetEvent::Wait(unsigned long milliseconds)
26 {

Callers 8

heartbeatThreadFuncMethod · 0.80
readyForPlayersMethod · 0.80
MainMethod · 0.80
DefineMethod · 0.80
~FGSDKInternalMethod · 0.80
~FGSDKInternalMethod · 0.80

Calls

no outgoing calls

Tested by 1

DefineMethod · 0.64