feat(core-shared/jobs): IJobQueue interface
This commit is contained in:
7
packages/core-shared/src/jobs/job-queue.interface.ts
Normal file
7
packages/core-shared/src/jobs/job-queue.interface.ts
Normal file
@@ -0,0 +1,7 @@
|
||||
export interface IJobQueue {
|
||||
enqueue<T>(
|
||||
taskSlug: string,
|
||||
input: T,
|
||||
options?: { runAt?: Date },
|
||||
): Promise<{ jobId: string }>;
|
||||
}
|
||||
Reference in New Issue
Block a user