FOSElasticaBundle/Provider/ProviderInterface.php
2015-03-12 21:57:26 +11:00

27 lines
677 B
PHP

<?php
namespace FOS\ElasticaBundle\Provider;
/**
* Insert application domain objects into elastica types.
*
* @author Thibault Duplessis <thibault.duplessis@gmail.com>
*/
interface ProviderInterface
{
/**
* Persists all domain objects to ElasticSearch for this provider.
*
* The closure can expect 2 or 3 arguments:
* * The step size
* * The total number of objects
* * A message to output in error conditions (not normally provided)
*
* @param \Closure $loggerClosure
* @param array $options
*
* @return
*/
public function populate(\Closure $loggerClosure = null, array $options = array());
}