2
0
Files
cal/calcom/packages/features/tasker/redis-tasker.ts
2024-08-09 00:39:27 +02:00

20 lines
528 B
TypeScript

import { type Tasker, type TaskTypes } from "./tasker";
/**
* RedisTasker is a tasker that uses Redis as a backend.
* WIP: This is a work in progress and is not fully implemented yet.
**/
export class RedisTasker implements Tasker {
async create(type: TaskTypes, payload: string): Promise<string> {
throw new Error("Method not implemented.");
}
processQueue(): Promise<void> {
throw new Error("Method not implemented.");
}
cleanup(): Promise<void> {
throw new Error("Method not implemented.");
}
}