-
Notifications
You must be signed in to change notification settings - Fork 4
Expand file tree
/
Copy pathSnapshot.java
More file actions
37 lines (32 loc) · 937 Bytes
/
Copy pathSnapshot.java
File metadata and controls
37 lines (32 loc) · 937 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
// 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).
package org.rocksdb;
/**
* Snapshot of database
*/
public class Snapshot extends RocksObject {
Snapshot(final long nativeHandle) {
super(nativeHandle);
}
/**
* Return the associated sequence number;
*
* @return the associated sequence number of
* this snapshot.
*/
public long getSequenceNumber() {
assert(isOwningHandle());
return getSequenceNumber(nativeHandle_);
}
/**
* Dont release C++ Snapshot pointer. The pointer
* to the snapshot is released by the database
* instance.
*/
@Override
protected final void disposeInternal(final long handle) {
}
private native long getSequenceNumber(long handle);
}