-
Notifications
You must be signed in to change notification settings - Fork 3
Other Operations
The store provides some more API methods e.g. to access meta information about the objects in the store:
|
Returns if the object for the passed key has been marked as updates (the |
|
Returns if the object for the passed key is stale, that is another transaction has committed a version newer than the version stored in the TX-View of the current transaction. |
|
Checks if the object for the passed key is stale (see above), and throws an exception if so. |
|
Refresh the object for the passed key from the committed values and return the refreshed object. Note that all earlier modifications in the current transaction are lost. |
|
If the object is not already marked as updated refresh it for the passed key from the committed values and return the possibly refreshed object. Note that earlier modifications done in the current transaction without calling the |
|
Returns the value that was valid as the object was first accessed by the current TX (null if untouched). |
|
Returns a info object (type: |
|
The |
Next Chapter: Dirty Check