Interface BTreeVisitor<Key,​Value>

    • Method Detail

      • isInterestedInKeysBetween

        boolean isInterestedInKeysBetween​(Key first,
                                          Key second)
        Do you want to visit the range of BTree entries between the first and and second key?
        Parameters:
        first - if null indicates the range of values before the second key.
        second - if null indicates the range of values after the first key.
        Returns:
        true if you want to visit the values between the first and second key.
      • visit

        void visit​(List<Key> keys,
                   List<Value> values)
        The keys and values of a BTree leaf node.
        Parameters:
        keys -
        values -