Uses of Interface
com.google.appengine.api.memcache.MemcacheService.IdentifiableValue
Packages that use MemcacheService.IdentifiableValue
Package
Description
Provides fast but unreliable data storage, also accessible via a JCache interface.
-
Uses of MemcacheService.IdentifiableValue in com.google.appengine.api.memcache
Methods in com.google.appengine.api.memcache that return MemcacheService.IdentifiableValueModifier and TypeMethodDescriptionMemcacheService.getIdentifiable
(Object key) Similar toMemcacheService.get(java.lang.Object)
, but returns an object that can later be used to perform aMemcacheService.putIfUntouched(java.lang.Object, com.google.appengine.api.memcache.MemcacheService.IdentifiableValue, java.lang.Object, com.google.appengine.api.memcache.Expiration)
operation.MemcacheService.CasValues.getOldValue()
Methods in com.google.appengine.api.memcache that return types with arguments of type MemcacheService.IdentifiableValueModifier and TypeMethodDescriptionAsyncMemcacheService.getIdentifiable
(Object key) AsyncMemcacheService.getIdentifiables
(Collection<T> keys) MemcacheService.getIdentifiables
(Collection<T> keys) Performs a getIdentifiable for multiple keys at once.Methods in com.google.appengine.api.memcache with parameters of type MemcacheService.IdentifiableValueModifier and TypeMethodDescriptionAsyncMemcacheService.putIfUntouched
(Object key, MemcacheService.IdentifiableValue oldValue, Object newValue) AsyncMemcacheService.putIfUntouched
(Object key, MemcacheService.IdentifiableValue oldValue, Object newValue, Expiration expires) boolean
MemcacheService.putIfUntouched
(Object key, MemcacheService.IdentifiableValue oldValue, Object newValue) Convenience shortcut, equivalent toput(key, oldValue, newValue, null)
.boolean
MemcacheService.putIfUntouched
(Object key, MemcacheService.IdentifiableValue oldValue, Object newValue, Expiration expires) Atomically, storenewValue
only if no other value has been stored sinceoldValue
was retrieved.Constructors in com.google.appengine.api.memcache with parameters of type MemcacheService.IdentifiableValueModifierConstructorDescriptionCasValues
(MemcacheService.IdentifiableValue oldValue, Object newValue) CasValues
(MemcacheService.IdentifiableValue oldValue, Object newValue, Expiration expiration)