Package io.ebeanservice.docstore.api
Interface DocStoreQueryUpdate<T>
-
public interface DocStoreQueryUpdate<T>
Update the document store using a Ebean ORM query.Executes a forEach query and updates the document store with the bean object graph returned by the query.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description voidflush()Flush the changes to the document store.voidstore(Object idValue, T bean)Process the bean storing in the document store.
-
-
-
Method Detail
-
store
void store(Object idValue, T bean) throws IOException
Process the bean storing in the document store.- Throws:
IOException
-
flush
void flush() throws IOException
Flush the changes to the document store.- Throws:
IOException
-
-