All Downloads are FREE. Search and download functionalities are using the official Maven repository.

infinispan.org.iq80.leveldb.table.UserComparator Maven / Gradle / Ivy

There is a newer version: 9.1.7.Final
Show newest version
package org.iq80.leveldb.table;

import org.iq80.leveldb.util.Slice;

import java.util.Comparator;

// todo this interface needs more thought
public interface UserComparator extends Comparator
{
    String name();

    Slice findShortestSeparator(Slice start, Slice limit);

    Slice findShortSuccessor(Slice key);
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy