We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9688cb0 commit dabb66eCopy full SHA for dabb66e
src/main/java/com/googlecode/objectify/impl/Session.java
@@ -4,6 +4,7 @@
4
import com.googlecode.objectify.util.ResultNow;
5
import java.util.HashMap;
6
import java.util.Map;
7
+import java.util.Set;
8
import java.util.logging.Level;
9
import java.util.logging.Logger;
10
@@ -69,4 +70,11 @@ public void clear() {
69
70
public String toString() {
71
return map.toString();
72
}
73
+
74
75
+ /**
76
+ * @return all the keys currently in the session. If you really want this data, subclass ObjectifyImpl and
77
+ * use the protected getSession() method.
78
+ */
79
+ public Set<Key<?>> keys() { return map.keySet(); }
80
0 commit comments