CoreClient invokes wrappers and interacts with wrap packages.

Hierarchy

Implemented by

Methods

  • Returns the configuration used to instantiate the client

    Returns CoreClientConfig

    an immutable core client config

  • returns an env (a set of environmental variables) from the configuration used to instantiate the client

    Parameters

    • uri: Uri

      the URI used to register the env

    Returns undefined | WrapperEnv

    an env, or undefined if an env is not found at the given URI

  • returns all env registrations from the configuration used to instantiate the client

    Returns undefined | ReadonlyUriMap<WrapperEnv>

    an array of env objects containing wrapper environmental variables

  • returns a file contained in a wrap package

    Parameters

    • uri: Uri

      a wrap URI

    • options: GetFileOptions

      { path: string; encoding?: "utf-8" | string }

    Returns Promise<Result<string | Uint8Array, WrapError>>

    a Promise of a Result containing a file if the request was successful

  • returns the interface implementations associated with an interface URI from the configuration used to instantiate the client

    Parameters

    Returns Promise<Result<Uri[], WrapError>>

    a Result containing URI array if the request was successful

  • returns all interfaces from the configuration used to instantiate the client

    Returns undefined | ReadonlyUriMap<readonly Uri[]>

    a Set of interfaces and their registered implementations

  • returns a package's wrap manifest

    Parameters

    • uri: Uri

      a wrap URI

    Returns Promise<Result<WrapManifest, WrapError>>

    a Result containing the WrapManifest if the request was successful

  • returns the URI resolver from the configuration used to instantiate the client

    Returns IUriResolver<unknown>

    an object that implements the IUriResolver interface

  • Invoke a wrapper.

    Type Parameters

    • TData = unknown

    Parameters

    Returns Promise<InvokeResult<TData>>

    A Promise with a Result containing the return value or an error

    Remarks

    Unlike invokeWrapper, this method automatically retrieves and caches the wrapper.

  • Invoke a wrapper using an instance of the wrapper.

    Type Parameters

    • TData = unknown

    Parameters

    • options: InvokerOptions & {
          wrapper: Wrapper;
      }

      invoker options and a wrapper instance to invoke

    Returns Promise<InvokeResult<TData>>

    A Promise with a Result containing the return value or an error

Generated using TypeDoc