public final void createAutoCorrectLinterFSAWorker(final Consumer<WorkerAbstract<?>> onStart, final Consumer<WorkerAbstract<?>> onEnd,
            final Consumer<Exception> onCancelled, final DictionaryLookup dictionaryLookup){
        final Supplier<WorkerAbstract<?>> creator = () -> new AutoCorrectLinterFSAWorker(parserManager.getAcoParser(),
            parserManager.getDicParser(), parserManager.getWordGenerator(), onCancelled, dictionaryLookup);
        createWorker(AutoCorrectLinterWorker.WORKER_NAME, creator, onStart, onEnd);