Interface PageHandlerWrapper<R>

Type Parameters:
R - Result type of actual PageHandler class.

public interface PageHandlerWrapper<R>
Wrapper factory for PageHandler instances.
  • Method Summary

    Modifier and Type
    Method
    Description
    org.apache.ignite.internal.PageHandler<?,R>
    wrap(BPlusTree<?,?> tree, org.apache.ignite.internal.PageHandler<?,R> hnd)
    Wraps given hnd.
  • Method Details

    • wrap

      org.apache.ignite.internal.PageHandler<?,R> wrap(BPlusTree<?,?> tree, org.apache.ignite.internal.PageHandler<?,R> hnd)
      Wraps given hnd.
      Parameters:
      tree - Instance of BPlusTree where given is used.
      hnd - Page handler to wrap.
      Returns:
      Wrapped version of given hnd.