org.hibernate.search.backend.impl.InTransactionWorkQueueSynchronization Maven / Gradle / Ivy
/*
* Hibernate Search, full-text search for your domain model
*
* License: GNU Lesser General Public License (LGPL), version 2.1 or later
* See the lgpl.txt file in the root directory or .
*/
package org.hibernate.search.backend.impl;
import java.util.concurrent.ConcurrentMap;
import org.hibernate.search.backend.spi.Work;
import org.hibernate.search.engine.integration.impl.ExtendedSearchIntegrator;
import org.hibernate.search.util.logging.impl.Log;
import org.hibernate.search.util.logging.impl.LoggerFactory;
import java.lang.invoke.MethodHandles;
/**
* Execute final work inside a transaction.
*
* @author Emmanuel Bernard
*/
public class InTransactionWorkQueueSynchronization implements WorkQueueSynchronization {
private static final Log log = LoggerFactory.make( MethodHandles.lookup() );
/**
* FullTextIndexEventListener is using a WeakIdentityHashMap
* So make sure all Synchronization implementations don't have any
* (direct or indirect) reference to the Session.
*/
private final QueueingProcessor queueingProcessor;
private boolean consumed;
private boolean prepared;
private final ConcurrentMap
© 2015 - 2025 Weber Informatics LLC | Privacy Policy