io.ebeanservice.docstore.api.DocStoreUpdate Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of ebean Show documentation
Show all versions of ebean Show documentation
composite of common runtime dependencies for all platforms
package io.ebeanservice.docstore.api;
import java.io.IOException;
/**
* For persist events that know how to publish or queue their change to the Document store.
*/
public interface DocStoreUpdate {
/**
* Add the event to the doc store bulk update.
*/
void docStoreUpdate(DocStoreUpdateContext txn) throws IOException;
/**
* Add to the queue for deferred processing.
*/
void addToQueue(DocStoreUpdates docStoreUpdates);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy