Class UriResolverAggregatorBase<TResolutionError, TGetResolversError>Abstract

Abstract class for IUriResolver implementations that aggregate multiple resolvers. The UriResolverAggregatorBase class attempts to resolve a URI by sequentially attempting resolution with each of its composite resolvers.

Type Parameters

  • TResolutionError = undefined

  • TGetResolversError = undefined

Hierarchy

Implements

Constructors

  • Type Parameters

    • TResolutionError = undefined

    • TGetResolversError = undefined

    Returns UriResolverAggregatorBase<TResolutionError, TGetResolversError>

Methods

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

    Parameters

    Returns string

    text describing the URI resolution step

  • Get a list of URI Resolvers

    Parameters

    • uri: Uri

      the URI to query for resolvers

    • client: CoreClient

      a CoreClient instance that can be used to make an invocation

    • resolutionContext: IUriResolutionContext

      a resolution context to update when resolving URIs

    Returns Promise<Result<IUriResolver<unknown>[], TGetResolversError>>

    a list of IUriResolver or an error

  • Resolve a URI to a wrap package, a wrapper, or a URI. Attempts to resolve the URI using each of the aggregated resolvers sequentially.

    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, TResolutionError | TGetResolversError>>

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

  • Using each of the aggregated resolvers, attempt to resolve a URI

    Parameters

    • uri: Uri

      the URI to resolve

    • client: CoreClient

      a CoreClient instance that can be used to make an invocation

    • resolvers: IUriResolver<unknown>[]

      a list of IUriResolver implementations

    • resolutionContext: IUriResolutionContext

      a resolution context to update when resolving URIs

    Returns Promise<Result<UriPackageOrWrapper, TResolutionError>>

    a URI, a Wrap Package, or a Wrapper (or an error)

Generated using TypeDoc