1 // Copyright (c) 2011-present, Facebook, Inc. All rights reserved. 2 // This source code is licensed under both the GPLv2 (found in the 3 // COPYING file in the root directory) and Apache 2.0 License 4 // (found in the LICENSE.Apache file in the root directory). 5 // 6 // This file implements the "bridge" between Java and C++ for 7 // ROCKSDB_NAMESPACE::CompactionFilter. 8 9 #include <jni.h> 10 11 #include "include/org_rocksdb_AbstractCompactionFilter.h" 12 #include "rocksdb/compaction_filter.h" 13 14 // <editor-fold desc="org.rocksdb.AbstractCompactionFilter"> 15 16 /* 17 * Class: org_rocksdb_AbstractCompactionFilter 18 * Method: disposeInternal 19 * Signature: (J)V 20 */ Java_org_rocksdb_AbstractCompactionFilter_disposeInternal(JNIEnv *,jobject,jlong handle)21void Java_org_rocksdb_AbstractCompactionFilter_disposeInternal(JNIEnv* /*env*/, 22 jobject /*jobj*/, 23 jlong handle) { 24 auto* cf = reinterpret_cast<ROCKSDB_NAMESPACE::CompactionFilter*>(handle); 25 assert(cf != nullptr); 26 delete cf; 27 } 28 // </editor-fold> 29