An IUriResolver implementation that caches wrappers once they are resolved. As it is a wrapper cache resolver, URI and package caching is outside of the scope for this resolver and can be achieved through other resolvers if necessary. The WrapperCacheResolver wraps an IUriResolver implementation and delegates resolution to it.

Type Parameters

  • TError

Hierarchy

  • WrapperCacheResolver

Implements

Constructors

Properties

Methods

Constructors

  • Creates a WrapperCacheResolver

    Type Parameters

    • TError

    Parameters

    Returns WrapperCacheResolver<TError>

Properties

_cache: any
_innerResolver: any

Methods

  • Resolve a URI to a wrap package, a wrapper, or a URI. If successful, cache the result.

    Parameters

    • uri: Uri

      the URI to resolve

    • client: CoreClient

      a CoreClient instance that may be used to invoke a wrapper that implements the UriResolver interface

    • resolutionContext: IUriResolutionContext

      the current URI resolution context

    Returns Promise<Result<UriPackageOrWrapper, Error | TError>>

    A Promise with a Result containing either a wrap package, a wrapper, or a URI if successful

  • Creates a WrapperCacheResolver from a resolver-like object

    Type Parameters

    • TResolverError = unknown

    Parameters

    Returns WrapperCacheResolver<TResolverError>

    a WrapperCacheResolver

Generated using TypeDoc