API Reference

IFunctionCallIndexFactorytype

Type alias for the factory service used to create, resolve, and release function-call index entries.

Overview

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

Declaration

export type IFunctionCallIndexFactory = IKeyedInstanceFactory<
  IISequenceWithIdData,
  IFunctionCallIndexData,
  IDisposableFunctionCallIndex
>;

Import

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