Defines entity capable of resolving a wrap URI

Type Parameters

  • TError

Hierarchy

  • RequestSynchronizerResolver

Implements

Constructors

  • Construct a RequestSynchronizerResolver

    Type Parameters

    • TError

    Parameters

    • resolverToSynchronize: IUriResolver<TError>

      the inner resolve whose resolution will be synchronized

    • Optional options: {
          shouldIgnoreCache?: ((error) => boolean);
      }

      the optional options containing the shouldIgnoreCache error handler

      • Optional shouldIgnoreCache?: ((error) => boolean)
          • (error): boolean
          • Parameters

            • error: undefined | TError

            Returns boolean

    Returns RequestSynchronizerResolver<TError>

Properties

options?: any
requestCache: any
resolveAndCacheRequest: any

A function that resolves a URI and caches the promise of that resolution for subsequent requests

Param

the URI to resolve

Param

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

Param

the current URI resolution context

Returns

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

resolverToSynchronize: any

Methods

  • 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, TError>>

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

  • Create a RequestSynchronizerResolver from a static-resolver-like object

    Type Parameters

    • TResolverError = unknown

    Parameters

    • resolver: UriResolverLike

      a resolver-like object whose resolution will be synchronized

    • Optional options: {
          shouldIgnoreCache?: ((error) => boolean);
      }

      the optional options containing the shouldIgnoreCache error handler

      • Optional shouldIgnoreCache?: ((error) => boolean)
          • (error): boolean
          • Parameters

            • error: undefined | TResolverError

            Returns boolean

    Returns RequestSynchronizerResolver<TResolverError>

    a RequestSynchronizerResolver

Generated using TypeDoc