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

Function IsFutureFinished

cpp/src/arrow/util/future.h:230–230  ·  view source on GitHub ↗

Source from the content-addressed store, hash-verified

228enum class FutureState : int8_t { PENDING, SUCCESS, FAILURE };
229
230inline bool IsFutureFinished(FutureState state) { return state != FutureState::PENDING; }
231
232/// \brief Describe whether the callback should be scheduled or run synchronously
233enum class ShouldSchedule {

Callers 11

AssertNotFinishedFunction · 0.85
AssertFinishedFunction · 0.85
AssertSuccessfulFunction · 0.85
AssertFailedFunction · 0.85
TESTFunction · 0.85
AddCallbackMethod · 0.85
TryAddCallbackMethod · 0.85
DoWaitMethod · 0.85
is_finishedMethod · 0.85

Calls

no outgoing calls

Tested by 2

TESTFunction · 0.68