Uses of Interface
com.google.appengine.api.memcache.MemcacheService.IdentifiableValue
-
Packages that use MemcacheService.IdentifiableValue Package Description com.google.appengine.api.memcache 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.IdentifiableValue Modifier and Type Method Description MemcacheService.IdentifiableValue
MemcacheService. 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.IdentifiableValue
MemcacheService.CasValues. getOldValue()
Methods in com.google.appengine.api.memcache that return types with arguments of type MemcacheService.IdentifiableValue Modifier and Type Method Description Future<MemcacheService.IdentifiableValue>
AsyncMemcacheService. getIdentifiable(Object key)
<T> Future<Map<T,MemcacheService.IdentifiableValue>>
AsyncMemcacheService. getIdentifiables(Collection<T> keys)
<T> Map<T,MemcacheService.IdentifiableValue>
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.IdentifiableValue Modifier and Type Method Description Future<Boolean>
AsyncMemcacheService. putIfUntouched(Object key, MemcacheService.IdentifiableValue oldValue, Object newValue)
Future<Boolean>
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.IdentifiableValue Constructor Description CasValues(MemcacheService.IdentifiableValue oldValue, Object newValue)
CasValues(MemcacheService.IdentifiableValue oldValue, Object newValue, Expiration expiration)
-