]> git.proxmox.com Git - ceph.git/blame - ceph/src/rocksdb/java/src/main/java/org/rocksdb/RemoveEmptyValueCompactionFilter.java
update ceph source to reef 18.1.2
[ceph.git] / ceph / src / rocksdb / java / src / main / java / org / rocksdb / RemoveEmptyValueCompactionFilter.java
CommitLineData
7c673cae 1// Copyright (c) 2011-present, Facebook, Inc. All rights reserved.
11fdf7f2
TL
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).
7c673cae
FG
5
6package org.rocksdb;
7
8/**
9 * Just a Java wrapper around EmptyValueCompactionFilter implemented in C++
10 */
11public class RemoveEmptyValueCompactionFilter
12 extends AbstractCompactionFilter<Slice> {
13 public RemoveEmptyValueCompactionFilter() {
14 super(createNewRemoveEmptyValueCompactionFilter0());
15 }
16
17 private native static long createNewRemoveEmptyValueCompactionFilter0();
18}