API Reference

IFunctionCallIndexinterface

Service for a computed function-call identity used by caching and change tracking.

Overview

Defines contracts and implementations for function-call identities (context + function name + arguments) used by call-result caching.

Declaration

export interface IFunctionCallIndex {
  readonly context: unknown;
  readonly functionName: string;
  readonly argumentsId: IISequenceWithIdData;
  readonly id: string;
}

Import

import type { IFunctionCallIndex } from '@rs-x/core';

Members

4 members in this interface.

readonly argumentsId
propertyreadonly
readonly argumentsId: IISequenceWithIdData
readonly context
propertyreadonly
readonly context: unknown

Type

unknown

readonly functionName
propertyreadonly
readonly functionName: string

Type

string

readonly id
propertyreadonly
readonly id: string

Type

string