• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /netgear-R7000-V1.0.7.12_1.2.5/ap/gpl/timemachine/db-4.7.25.NC/java/src/com/sleepycat/persist/

Lines Matching defs:txn

314  * Transaction txn = env.beginTransaction(null, null);
316 * primaryIndex.delete(txn, 1);
317 * primaryIndex.delete(txn, 2);
318 * txn.commit();
319 * txn = null;
321 * if (txn != null) {
322 * txn.abort();
396 * {@code EntityCursor<Employee>} cursor = primaryIndex.entities(txn, null);
417 * Transaction txn = env.beginTransaction(null, null);
420 * cursor = primaryIndex.entities(txn, null);
426 * txn.commit();
427 * txn = null;
432 * if (txn != null) {
433 * txn.abort();
472 * {@code EntityCursor<Employee>} cursor = primaryIndex.entities(txn, null);
493 * {@code EntityCursor<Employee>} cursor = primaryIndex.entities(txn, config);
520 * Transaction txn = env.beginTransaction(null, null);
523 * cursor = primaryIndex.entities(txn, null);
529 * txn.commit();
530 * txn = null;
541 * if (txn != null) {
542 * txn.abort();
585 * @param txn the transaction used to protect this operation, or null
595 boolean contains(Transaction txn, K key, LockMode lockMode)
615 * @param txn the transaction used to protect this operation, or null
626 V get(Transaction txn, K key, LockMode lockMode)
657 * @param txn the transaction used to protect this operation, null to use
664 boolean delete(Transaction txn, K key)
683 * @param txn the transaction used to protect all operations performed with
694 EntityCursor<K> keys(Transaction txn, CursorConfig config)
713 * @param txn the transaction used to protect all operations performed with
724 EntityCursor<V> entities(Transaction txn,
761 * @param txn the transaction used to protect all operations performed with
786 EntityCursor<K> keys(Transaction txn,
827 * @param txn the transaction used to protect all operations performed with
852 EntityCursor<V> entities(Transaction txn,
888 * @param txn the transaction used to protect all operations performed with
901 ForwardCursor<K> unsortedKeys(Transaction txn,
937 * @param txn the transaction used to protect all operations performed with
950 ForwardCursor<V> unsortedEntities(Transaction txn,