Example usage for com.liferay.portal.search.batch BatchIndexingActionable setAddCriteriaMethod

List of usage examples for com.liferay.portal.search.batch BatchIndexingActionable setAddCriteriaMethod

Introduction

In this page you can find the example usage for com.liferay.portal.search.batch BatchIndexingActionable setAddCriteriaMethod.

Prototype

public void setAddCriteriaMethod(Consumer<DynamicQuery> consumer);

Source Link

Usage

From source file:com.liferay.docs.guestbook.search.GuestbookEntryBatchReindexerImpl.java

License:Open Source License

@Override
public void reindex(long guestbookId, long companyId) {
    BatchIndexingActionable batchIndexingActionable = indexerWriter.getBatchIndexingActionable();

    batchIndexingActionable.setAddCriteriaMethod(dynamicQuery -> {
        Property guestbookIdPropery = PropertyFactoryUtil.forName("guestbookId");

        dynamicQuery.add(guestbookIdPropery.eq(guestbookId));
    });//from  w ww  .j a  v  a2 s  .  c  o m

    batchIndexingActionable.setCompanyId(companyId);

    batchIndexingActionable.setPerformActionMethod((GuestbookEntry entry) -> {
        Document document = indexerDocumentBuilder.getDocument(entry);

        batchIndexingActionable.addDocuments(document);
    });

    batchIndexingActionable.performActions();

}