Doctrine integration refactoring, adds realtime index updates

This commit is contained in:
ornicar 2011-06-07 11:13:34 -07:00
commit 6fee4131f4
15 changed files with 508 additions and 58 deletions

View file

@ -4,7 +4,17 @@ namespace FOQ\ElasticaBundle\Provider;
use Closure;
/**
* Insert application domain objects into elastica types
*
* @author Thibault Duplessis <thibault.duplessis@gmail.com>
*/
interface ProviderInterface
{
/**
* Add all domain objects of a repository to the elastica type
*
* @param Closure $loggerClosure
*/
function populate(Closure $loggerClosure);
}