All Downloads are FREE. Search and download functionalities are using the official Maven repository.

org.hibernate.search.backend.WorkQueue Maven / Gradle / Ivy

There is a newer version: 3.5.6-Final
Show newest version
//$Id: $
package org.hibernate.search.backend;

/**
 * Set of work operations
 *
 * @author Emmanuel Bernard
 */
public interface WorkQueue {
	/**
	 * Add a work
	 */
	void add(Work work);

	/**
	 * Execute works
	 */
	void performWork();

	/**
	 * Rollback works
	 */
	void cancelWork();
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy