Overview
Defines contracts and implementations for function-call identities (context + function name + arguments) used by call-result caching.
API Reference
Service for a computed function-call identity used by caching and change tracking.
export interface IFunctionCallIndex {
readonly context: unknown;
readonly functionName: string;
readonly argumentsId: IISequenceWithIdData;
readonly id: string;
}import type { IFunctionCallIndex } from '@rs-x/core';4 members in this interface.
readonly argumentsId: IISequenceWithIdDatareadonly context: unknownType
unknown
readonly functionName: stringType
string
readonly id: stringType
string