rocksdb/java
Yueh-Hsuan Chiang ab3e566699 [Java] Generalize dis-own native handle and refine dispose framework.
Summary:
1. Move disOwnNativeHandle() function from RocksDB to RocksObject
to allow other RocksObject to use disOwnNativeHandle() when its
ownership of native handle has been transferred.

2. RocksObject now has an abstract implementation of dispose(),
which does the following two things.  First, it checks whether
both isOwningNativeHandle() and isInitialized() return true.
If so, it will call the protected abstract function dispose0(),
which all the subclasses of RocksObject should implement.  Second,
it sets nativeHandle_ = 0.  This redesign ensure all subclasses
of RocksObject have the same dispose behavior.

3. All subclasses of RocksObject now should implement dispose0()
instead of dispose(), and dispose0() will be called only when
isInitialized() returns true.

Test Plan:
make rocksdbjava
make jtest

Reviewers: dhruba, sdong, ankgup87, rsumbaly, swapnilghike, zzbennett, haobo

Reviewed By: haobo

Subscribers: leveldb

Differential Revision: https://reviews.facebook.net/D18801
2014-05-28 18:16:29 -07:00
..
org/rocksdb [Java] Generalize dis-own native handle and refine dispose framework. 2014-05-28 18:16:29 -07:00
rocksjni [Java] Generalize dis-own native handle and refine dispose framework. 2014-05-28 18:16:29 -07:00
jdb_bench.sh [Java] Fixed compile error due to the removal of ReadOptions.prefix_seek, minor improvement on DbBenchmark.java. 2014-04-27 21:49:45 -07:00
Makefile [Java] Rename org.rocksdb.Iterator to org.rocksdb.RocksIterator. 2014-05-12 11:02:25 -07:00
RocksDBSample.java [Java] Rename org.rocksdb.Iterator to org.rocksdb.RocksIterator. 2014-05-12 11:02:25 -07:00