MCPcopy Create free account
hub / github.com/apache/arrow / AssertStopNotRequested

Method AssertStopNotRequested

cpp/src/arrow/util/cancel_test.cc:192–196  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

190#endif
191
192 void AssertStopNotRequested() {
193 SleepFor(0.01);
194 ASSERT_FALSE(stop_token_->IsStopRequested());
195 ASSERT_OK(stop_token_->Poll());
196 }
197
198 void AssertStopRequested() {
199 BusyWait(1.0, [&]() { return stop_token_->IsStopRequested(); });

Callers

nothing calls this directly

Calls 3

SleepForFunction · 0.85
IsStopRequestedMethod · 0.80
PollMethod · 0.80

Tested by

no test coverage detected