public function UnsavedIndexConfiguration::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/
UnsavedIndexConfiguration.php, line 555
Class
- UnsavedIndexConfiguration
- Represents a configuration of an index that was not yet permanently saved.
Namespace
Drupal\search_apiCode
public function isBatchTracking() {
return $this->entity
->isBatchTracking();
}