2016-02-10 00:12:00 +01:00
|
|
|
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
|
2017-07-16 01:03:42 +02:00
|
|
|
// This source code is licensed under both the GPLv2 (found in the
|
|
|
|
// COPYING file in the root directory) and Apache 2.0 License
|
|
|
|
// (found in the LICENSE.Apache file in the root directory).
|
2015-01-30 21:05:45 +01:00
|
|
|
//
|
|
|
|
// This file implements the "bridge" between Java and C++.
|
|
|
|
|
|
|
|
#include <jni.h>
|
|
|
|
#include <stdio.h>
|
|
|
|
#include <stdlib.h>
|
|
|
|
|
|
|
|
#include "include/org_rocksdb_Snapshot.h"
|
|
|
|
#include "rocksdb/db.h"
|
|
|
|
#include "rocksjni/portal.h"
|
|
|
|
|
|
|
|
/*
|
|
|
|
* Class: org_rocksdb_Snapshot
|
|
|
|
* Method: getSequenceNumber
|
|
|
|
* Signature: (J)J
|
|
|
|
*/
|
2018-04-13 02:55:14 +02:00
|
|
|
jlong Java_org_rocksdb_Snapshot_getSequenceNumber(JNIEnv* /*env*/,
|
|
|
|
jobject /*jobj*/,
|
|
|
|
jlong jsnapshot_handle) {
|
|
|
|
auto* snapshot = reinterpret_cast<rocksdb::Snapshot*>(jsnapshot_handle);
|
2015-01-30 21:05:45 +01:00
|
|
|
return snapshot->GetSequenceNumber();
|
|
|
|
}
|