1 // Copyright (c) Facebook, Inc. and its affiliates. All Rights Reserved. 2 // Copyright (c) 2014, Vlad Balan ([email protected]). All rights reserved. 3 // This source code is licensed under both the GPLv2 (found in the 4 // COPYING file in the root directory) and Apache 2.0 License 5 // (found in the LICENSE.Apache file in the root directory). 6 7 package org.rocksdb; 8 9 /** 10 * MergeOperator holds an operator to be applied when compacting 11 * two merge operands held under the same key in order to obtain a single 12 * value. 13 */ 14 public abstract class MergeOperator extends RocksObject { MergeOperator(final long nativeHandle)15 protected MergeOperator(final long nativeHandle) { 16 super(nativeHandle); 17 } 18 } 19