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

Function IsCancelled

cpp/src/arrow/status.h:297–297  ·  view source on GitHub ↗

Return true iff the status indicates a cancelled operation.

Source from the content-addressed store, hash-verified

295 constexpr bool IsInvalid() const { return code() == StatusCode::Invalid; }
296 /// Return true iff the status indicates a cancelled operation.
297 constexpr bool IsCancelled() const { return code() == StatusCode::Cancelled; }
298 /// Return true iff the status indicates an IO-related failure.
299 constexpr bool IsIOError() const { return code() == StatusCode::IOError; }
300 /// Return true iff the status indicates a container reaching capacity limits.

Callers 13

ProbeSingleBatchMethod · 0.85
ProbingFinishedMethod · 0.85
BuildHashTableMethod · 0.85
PartitionTaskMethod · 0.85
BuildTaskMethod · 0.85
MergeTaskMethod · 0.85
StartScanHashTableMethod · 0.85
ScanTaskMethod · 0.85
ScanFinishedMethod · 0.85
FlushFinishedMethod · 0.85

Calls 1

codeFunction · 0.70

Tested by

no test coverage detected