java.lang.Object
io.ebean.DocStoreQueueEntry
Bean holding the details to update the document store.
-
Nested Class Summary
Modifier and TypeClassDescriptionstatic enum
Action to either update or delete a document from the index. -
Constructor Summary
ConstructorDescriptionDocStoreQueueEntry
(DocStoreQueueEntry.Action type, String queueId, Object beanId) Construct for an INDEX or DELETE action.DocStoreQueueEntry
(DocStoreQueueEntry.Action type, String queueId, String path, Object beanId) Construct for an NESTED/embedded path invalidation action. -
Method Summary
-
Constructor Details
-
DocStoreQueueEntry
Construct for an INDEX or DELETE action. -
DocStoreQueueEntry
public DocStoreQueueEntry(DocStoreQueueEntry.Action type, String queueId, String path, Object beanId) Construct for an NESTED/embedded path invalidation action.
-
-
Method Details
-
getType
Return the event type. -
getQueueId
Return the associate queueId. -
getPath
Return the path if this is a nested update. -
getBeanId
Return the bean id (which matches the document id).
-