MCPcopy Create free account
hub / github.com/RedisGraph/RedisGraph / GraphDecodeContext_Finished

Function GraphDecodeContext_Finished

src/serializers/decode_context.c:61–64  ·  view source on GitHub ↗

Returns if the the number of processed keys is equal to the total number of graph keys.

Source from the content-addressed store, hash-verified

59
60// Returns if the the number of processed keys is equal to the total number of graph keys.
61bool GraphDecodeContext_Finished(const GraphDecodeContext *ctx) {
62 ASSERT(ctx);
63 return ctx->keys_processed == ctx->graph_keys_count;
64}
65
66void GraphDecodeContext_IncreaseProcessedKeyCount(GraphDecodeContext *ctx) {
67 ASSERT(ctx);

Callers 7

RdbLoadGraphContext_v13Function · 0.85
RdbLoadGraphContext_v11Function · 0.85
RdbLoadGraphContext_v9Function · 0.85
RdbLoadGraphContext_v10Function · 0.85
RdbLoadGraphContext_v8Function · 0.85
RdbLoadGraphContext_v12Function · 0.85
_GraphContext_FreeFunction · 0.85

Calls

no outgoing calls

Tested by

no test coverage detected