You are here

public static function IndexTaskManager::getSubscribedEvents in Search API 8

File

src/Task/IndexTaskManager.php, line 56

Class

IndexTaskManager
Provides a service for managing pending index tasks.

Namespace

Drupal\search_api\Task

Code

public static function getSubscribedEvents() {
  $events['search_api.task.' . self::TRACK_ITEMS_TASK_TYPE][] = [
    'trackItems',
  ];
  return $events;
}