Overview
Defines contracts and implementations for function-call identities (context + function name + arguments) used by call-result caching.
API Reference
Represents one tracked function call identity (context + function name + arguments id).
import { FunctionCallIndex } from '@rs-x/core';import { FunctionCallIndex } from '@rs-x/core';
const instance = new FunctionCallIndex(...args);2 members in this class.
constructor(
public readonly context: unknown,
public readonly functionName: string,
private readonly _sequenceWithId: ISequenceWithId,
private readonly _owner: IDisposableOwner
)Parameters
public dispose(): voidParameters
No parameters.
Returns
void