mirror of
https://git.joinsharkey.org/Sharkey/Sharkey.git
synced 2024-11-13 08:53:08 +02:00
63df2c851e
Co-authored-by: tamaina <tamaina@hotmail.co.jp>
25 lines
928 B
TypeScript
25 lines
928 B
TypeScript
import { Inject, Injectable } from '@nestjs/common';
|
|
import { DI } from '@/di-symbols.js';
|
|
import type { Config } from '@/config.js';
|
|
import { CleanRemoteFilesProcessorService } from './processors/CleanRemoteFilesProcessorService.js';
|
|
import { DeleteFileProcessorService } from './processors/DeleteFileProcessorService.js';
|
|
import type Bull from 'bull';
|
|
import { bindThis } from '@/decorators.js';
|
|
|
|
@Injectable()
|
|
export class ObjectStorageQueueProcessorsService {
|
|
constructor(
|
|
@Inject(DI.config)
|
|
private config: Config,
|
|
|
|
private deleteFileProcessorService: DeleteFileProcessorService,
|
|
private cleanRemoteFilesProcessorService: CleanRemoteFilesProcessorService,
|
|
) {
|
|
}
|
|
|
|
@bindThis
|
|
public start(q: Bull.Queue): void {
|
|
q.process('deleteFile', 16, (job) => this.deleteFileProcessorService.process(job));
|
|
q.process('cleanRemoteFiles', 16, (job, done) => this.cleanRemoteFilesProcessorService.process(job, done));
|
|
}
|
|
}
|