![JAR search and dependency download from the Maven repository](/logo.png)
org.hibernate.search.backend.WorkQueue Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of hibernate-annotations
Show all versions of hibernate-annotations
Annotations metadata for Hibernate
//$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