2016-12-09 11:47:28 +01:00
|
|
|
<?php
|
2017-07-06 23:48:47 +02:00
|
|
|
namespace Codappix\SearchCore\Domain\Index;
|
2016-12-09 11:47:28 +01:00
|
|
|
|
|
|
|
/*
|
2016-12-09 13:19:35 +01:00
|
|
|
* Copyright (C) 2016 Daniel Siepmann <coding@daniel-siepmann.de>
|
2016-12-09 11:47:28 +01:00
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or
|
|
|
|
* modify it under the terms of the GNU General Public License
|
|
|
|
* as published by the Free Software Foundation; either version 2
|
|
|
|
* of the License, or (at your option) any later version.
|
|
|
|
*
|
|
|
|
* This program is distributed in the hope that it will be useful,
|
|
|
|
* but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
* MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
* GNU General Public License for more details.
|
|
|
|
*
|
|
|
|
* You should have received a copy of the GNU General Public License
|
|
|
|
* along with this program; if not, write to the Free Software
|
|
|
|
* Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA
|
|
|
|
* 02110-1301, USA.
|
|
|
|
*/
|
|
|
|
|
|
|
|
/**
|
2016-12-09 13:19:35 +01:00
|
|
|
* Interface that all indexer should implement.
|
2016-12-09 11:47:28 +01:00
|
|
|
*/
|
2016-12-09 13:19:35 +01:00
|
|
|
interface IndexerInterface
|
2016-12-09 11:47:28 +01:00
|
|
|
{
|
2016-12-09 13:19:35 +01:00
|
|
|
/**
|
2016-12-14 19:34:35 +01:00
|
|
|
* Fetches all documents from the indexerService and pushes it to the connection.
|
2016-12-09 14:07:38 +01:00
|
|
|
*
|
|
|
|
* @return void
|
2016-12-09 13:19:35 +01:00
|
|
|
*/
|
2016-12-15 09:17:58 +01:00
|
|
|
public function indexAllDocuments();
|
2016-12-12 13:33:07 +01:00
|
|
|
|
|
|
|
/**
|
2017-11-10 13:22:15 +01:00
|
|
|
* Fetches a single document and pushes it to the connection.
|
2016-12-14 19:34:35 +01:00
|
|
|
*
|
2016-12-12 13:33:07 +01:00
|
|
|
* @return void
|
|
|
|
*/
|
2018-03-06 17:40:49 +01:00
|
|
|
public function indexDocument(string $identifier);
|
2017-07-13 12:51:36 +02:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Recieves the identifier of the indexer itself.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
2018-03-06 17:40:49 +01:00
|
|
|
public function setIdentifier(string $identifier);
|
2017-11-10 13:22:15 +01:00
|
|
|
|
|
|
|
/**
|
|
|
|
* Delete the whole index.
|
|
|
|
*
|
|
|
|
* @return void
|
|
|
|
*/
|
|
|
|
public function delete();
|
2016-12-09 11:47:28 +01:00
|
|
|
}
|