An entity capable of invoking wrappers.

Template

Type of the invoke result data.

Hierarchy

Methods

  • 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