Interface BPlusTree.PublishFunction<V,R>

All Known Subinterfaces:
SoftBPlusTree.IOPublishFunction<V,R>
Enclosing class:
BPlusTree<V>
Functional Interface:
This is a functional interface and can therefore be used as the assignment target for a lambda expression or method reference.

@FunctionalInterface public static interface BPlusTree.PublishFunction<V,R>
Transforms a tree entry during BPlusTree.publish(BPlusTree.PublishFunction) iteration. If the function returns null, the entry is skipped and not emitted to the subscriber.
  • Method Summary

    Modifier and Type
    Method
    Description
    apply(byte[] key, V value)
     
  • Method Details

    • apply

      R apply(byte[] key, V value)