We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 892b2dd commit 849d59dCopy full SHA for 849d59d
objectbox-java/src/main/java/io/objectbox/Cursor.java
@@ -194,7 +194,7 @@ public T first() {
194
return (T) nativeFirstEntity(cursor);
195
}
196
197
- /** Does not work yet, also probably won't be faster than {@link Box#getAll()}. */
+ /** ~10% slower than iterating with {@link #first()} and {@link #next()} as done by {@link Box#getAll()}. */
198
public List<T> getAll() {
199
return (List) nativeGetAllEntities(cursor);
200
0 commit comments