Make BaseRedisRepository extend EventEmitter; make RedisShuttleRepository extend BaseRedisRepository

This commit is contained in:
2025-11-11 12:31:32 -08:00
parent b6b79e1345
commit 01c55d52ec
5 changed files with 12 additions and 86 deletions

View File

@@ -53,32 +53,4 @@ export class RedisSelfUpdatingETARepository extends BaseRedisRepository implemen
removeAllListeners(eventName?: string | symbol | undefined): this {
throw new Error("Method not implemented.");
}
setMaxListeners(n: number): this {
throw new Error("Method not implemented.");
}
getMaxListeners(): number {
throw new Error("Method not implemented.");
}
listeners<K>(eventName: string | symbol): Function[] {
throw new Error("Method not implemented.");
}
rawListeners<K>(eventName: string | symbol): Function[] {
throw new Error("Method not implemented.");
}
emit<K>(eventName: string | symbol, ...args: any[]): boolean {
throw new Error("Method not implemented.");
}
listenerCount<K>(eventName: string | symbol, listener?: Function | undefined): number {
throw new Error("Method not implemented.");
}
prependListener<K>(eventName: string | symbol, listener: (...args: any[]) => void): this {
throw new Error("Method not implemented.");
}
prependOnceListener<K>(eventName: string | symbol, listener: (...args: any[]) => void): this {
throw new Error("Method not implemented.");
}
eventNames(): (string | symbol)[] {
throw new Error("Method not implemented.");
}
}