Skip to content

Instantly share code, notes, and snippets.

@witalobenicio
Created July 30, 2021 10:34
Show Gist options
  • Save witalobenicio/fc3adac304591fb81948d2ee06567bcc to your computer and use it in GitHub Desktop.
Save witalobenicio/fc3adac304591fb81948d2ee06567bcc to your computer and use it in GitHub Desktop.
export default function initializeProcessorSubscribers(): void {
const taskResultController = new TaskResultController();
ToDoProcessorQueue
.getInstance()
.subscribe(
taskResultController.onSuccess,
taskResultController.onError
);
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment