/**
* A utility class to start the Hibernate Search JSR-352 mass indexing job.
* <p>
* Use it like this:
* <code><pre>
* jobOperator.start(
* MassIndexingJob.NAME,
* MassIndexingJob.parameters()
* .forEntities( String.class, Integer.class )
* .entityFetchSize( 1000 )
* .rowsPerPartition( 10_000 )
* .maxResults( 1000 )
* .maxThreads( 30 )
* .purgeAtStart( true )
* .build()
* );
* </pre></code>
*
* @author Mincong Huang
*/
public final class MassIndexingJob {
...
}