public function Index::isBatchTracking in Search API 8
Determines whether the index is currently in "batch tracking" mode.
Return value
bool Whether the index is currently in "batch tracking" mode.
Overrides IndexInterface::isBatchTracking
File
- src/
Entity/ Index.php, line 1032
Class
- Index
- Defines the search index configuration entity.
Namespace
Drupal\search_api\EntityCode
public function isBatchTracking() {
return (bool) $this->batchTracking;
}