Class ResolverWithHistory<TError>Abstract

An abstract IUriResolver implementation that updates the resolution context

Type Parameters

  • TError = undefined

Hierarchy

Implements

Constructors

Methods

  • Resolve a URI to a wrap package, a wrapper, or a URI. Updates the resolution context with 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, TError>>

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

  • A utility function for generating step descriptions to facilitate resolution context updates

    Parameters

    Returns string

    text describing the URI resolution step

  • Resolve a URI to a wrap package, a wrapper, or a URI. Updates the resolution context with 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, TError>>

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

    Remarks

    This method calls the internal abstract method _tryResolveUri before updating the resolution context. Implementations are expect to place resolution logic in _tryResolveUri.

Generated using TypeDoc