API Reference

IDisposableFunctionCallIndexinterface

Function-call index with dispose support for releasing tracked call resources.

Overview

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

Declaration

export interface IDisposableFunctionCallIndex
  extends IFunctionCallIndex, IDisposable {
  readonly context: unknown;
  readonly functionName: string;
  readonly argumentsId: IISequenceWithIdData;
  readonly id: string;
}

Import

import type { IDisposableFunctionCallIndex } 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