mirror of
				https://codeberg.org/yeentown/barkey.git
				synced 2025-11-03 23:14:13 +00:00 
			
		
		
		
	Update QueueProcessorService.ts
This commit is contained in:
		
							parent
							
								
									4790ddfad6
								
							
						
					
					
						commit
						b35b9bc27f
					
				
					 1 changed files with 11 additions and 9 deletions
				
			
		| 
						 | 
				
			
			@ -324,15 +324,17 @@ export class QueueProcessorService implements OnApplicationShutdown {
 | 
			
		|||
	}
 | 
			
		||||
 | 
			
		||||
	@bindThis
 | 
			
		||||
	public start() {
 | 
			
		||||
		this.systemQueueWorker.run();
 | 
			
		||||
		this.dbQueueWorker.run();
 | 
			
		||||
		this.deliverQueueWorker.run();
 | 
			
		||||
		this.inboxQueueWorker.run();
 | 
			
		||||
		this.webhookDeliverQueueWorker.run();
 | 
			
		||||
		this.relationshipQueueWorker.run();
 | 
			
		||||
		this.objectStorageQueueWorker.run();
 | 
			
		||||
		this.endedPollNotificationQueueWorker.run();
 | 
			
		||||
	public async start(): Promise<void> {
 | 
			
		||||
		await Promise.all([
 | 
			
		||||
			this.systemQueueWorker.run(),
 | 
			
		||||
			this.dbQueueWorker.run(),
 | 
			
		||||
			this.deliverQueueWorker.run(),
 | 
			
		||||
			this.inboxQueueWorker.run(),
 | 
			
		||||
			this.webhookDeliverQueueWorker.run(),
 | 
			
		||||
			this.relationshipQueueWorker.run(),
 | 
			
		||||
			this.objectStorageQueueWorker.run(),
 | 
			
		||||
			this.endedPollNotificationQueueWorker.run(),
 | 
			
		||||
		]);
 | 
			
		||||
	}
 | 
			
		||||
 | 
			
		||||
	@bindThis
 | 
			
		||||
| 
						 | 
				
			
			
 | 
			
		|||
		Loading…
	
	Add table
		
		Reference in a new issue