An IUriResolver implementation that caches the URI resolution result. The URI resolution result can be a URI, IWrapPackage, Wrapper or Error. Errors are not cached by default and can be cached by setting the cacheErrors option to true. The ResolutionResultCacheResolver wraps an IUriResolver implementation and delegates resolution to it.

Type Parameters

  • TError

Hierarchy

  • ResolutionResultCacheResolver

Implements

Constructors

Properties

Methods

Constructors

  • Creates a ResolutionResultCacheResolver

    Type Parameters

    • TError

    Parameters

    • _innerResolver: IUriResolver<TError>

      a resolver to delegate resolution to

    • _cache: IResolutionResultCache<TError>

      a resolution result cache

    • Optional _options: {
          cacheErrors: boolean;
      }
      • cacheErrors: boolean

    Returns ResolutionResultCacheResolver<TError>

Properties

_cache: any
_innerResolver: any
_options: 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 ResolutionResultCacheResolver from a resolver-like object

    Type Parameters

    • TResolverError = unknown

    Parameters

    • innerResolver: UriResolverLike

      a resolver-like item to delegate resolution to

    • cache: IResolutionResultCache<TResolverError>

      a resolution result cache

    • Optional options: {
          cacheErrors: boolean;
      }

      cacheErrors (default: false)

      • cacheErrors: boolean

    Returns ResolutionResultCacheResolver<TResolverError>

    a ResolutionResultCacheResolver

Generated using TypeDoc