Use Task Modifiers to control task execution
masterTask Modifiers are a specific ember-concurrency concept used to define how a task behaves when it is invoked while already running. Common modifiers include:
restartable: Restarts the task from the beginning.enqueue: Queues the next execution to run after the current one finishes.drop: Drops the new invocation if the task is already running.keepLatest: Drops the current running task and starts the new one (similar to restartable but specifically manages the latest invocation).maxConcurrency: Limits how many instances of the task can run at once.