ResolutionCallsMap interface

The loader and initializer calls already made during a request, keyed by a hash of the call's signature.

Signature:

export interface ResolutionCallsMap 

Remarks

This is what stops two requirements that reduce to the same lookup from costing two round trips: the second finds the first one's entry and reuses it. The hash covers the type, which of the two kinds of call it was, and the arguments.

The stored value is the call's own result — an id-keyed map of loaded objects for a loader, or the initializer's result map. This was declared boolean in earlier releases, which described the truthiness test at the read site rather than what is actually kept.

Read this page as plain markdown — no HTML, no navigation. For pasting into an LLM, or for an agent to fetch.