durabull
Version:
A durable workflow engine built on top of BullMQ and Redis
28 lines (27 loc) • 602 B
TypeScript
/**
* ID generation helpers using ULID
*/
/**
* Generate a new workflow ID
*/
export declare function generateWorkflowId(): string;
/**
* Generate a new activity ID
*/
export declare function generateActivityId(): string;
/**
* Generate a new timer ID
*/
export declare function generateTimerId(): string;
/**
* Generate a new signal ID
*/
export declare function generateSignalId(): string;
/**
* Generate a new side effect ID
*/
export declare function generateSideEffectId(): string;
/**
* Generate a new child workflow ID
*/
export declare function generateChildWorkflowId(): string;