Beignet API reference
    Preparing search index...

    Interface JobDispatcher

    Job dispatcher shape accepted by job wrappers.

    interface JobDispatcher {
        dispatch<J extends JobDef<string, StandardSchema, unknown>>(
            job: J,
            payload: InferJobPayload<J>,
            options?: JobDispatchOptions,
        ): MaybePromise<void>;
    }
    Index