}
private <T> void performSearchWorks(Collection<Work<T>> works, TransactionContext transactionContext) {
Worker worker = searchFactory.getWorker();
for (Work<T> work : works) {
worker.performWork(work, transactionContext);
}
}
private boolean isIndexed(final Class<?> c) {
final EntityIndexBinding indexBinding = this.searchFactory.getIndexBinding(c);