Searched defs:openCursor0 (Results 1 - 2 of 2) sorted by relevance

/forgerock/opendj-v3/opendj-server-legacy/src/main/java/org/opends/server/backends/pluggable/
H A DShardedCounter.java91 private Cursor<ByteString, Long> openCursor0(ReadableTransaction txn) method in class:ShardedCounter
120 try (final SequentialCursor<ByteString, Long> cursor = new ShardCursor(openCursor0(txn), key))
133 try (final SequentialCursor<ByteString, Long> cursor = new ShardCursor(openCursor0(txn), key))
H A DDN2ID.java168 return transformKeysAndValues(openCursor0(txn, dn), TO_VOID_KEY, TO_ENTRY_ID);
171 private Cursor<ByteString, ByteString> openCursor0(ReadableTransaction txn, DN dn) { method in class:DN2ID
179 return transformKeysAndValues(new ChildrenCursor(openCursor0(txn, dn)), TO_VOID_KEY, TO_ENTRY_ID);
183 return transformKeysAndValues(new SubtreeCursor(openCursor0(txn, dn)), TO_VOID_KEY, TO_ENTRY_ID);
194 try (SequentialCursor<ByteString, ByteString> cursor = new SubtreeCursor(openCursor0(txn, oldName)))

Completed in 22 milliseconds