You are here

public function TestTracker::trackItemsInserted in Search API 8

Inserts new items into the tracking system for this index.

Parameters

string[] $ids: The item IDs of the new search items.

Overrides TrackerInterface::trackItemsInserted

File

tests/search_api_test/src/Plugin/search_api/tracker/TestTracker.php, line 51

Class

TestTracker
Provides a tracker implementation which uses a FIFO-like processing order.

Namespace

Drupal\search_api_test\Plugin\search_api\tracker

Code

public function trackItemsInserted(array $ids) {
  $this
    ->logMethodCall(__FUNCTION__, func_get_args());
}