We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 6d08cf9 commit 8f31723Copy full SHA for 8f31723
1 file changed
src/main/java/com/googlecode/objectify/cache/MemcacheService.java
@@ -22,6 +22,9 @@ class CasPut {
22
private final int expirationSeconds;
23
}
24
25
+ /**
26
+ * @return the value in memcache for this, or null if there was nothing there
27
+ */
28
Object get(final String key);
29
30
/**
@@ -40,7 +43,10 @@ class CasPut {
40
43
/** Values can be null */
41
44
void putAll(final Map<String, Object> values);
42
45
- /** Values can be null */
46
47
+ * Values can be null
48
+ * @return a set of all the keys that succeeded
49
50
Set<String> putIfUntouched(final Map<String, CasPut> values);
51
52
void deleteAll(final Collection<String> keys);
0 commit comments