Interface PageHandlerWrapper<R>
-
- Type Parameters:
R- Result type of actualPageHandlerclass.
public interface PageHandlerWrapper<R>Wrapper factory forPageHandlerinstances.
-
-
Method Summary
All Methods Instance Methods Abstract Methods Modifier and Type Method Description PageHandler<?,R>wrap(BPlusTree<?,?> tree, PageHandler<?,R> hnd)Wraps givenhnd.
-
-
-
Method Detail
-
wrap
PageHandler<?,R> wrap(BPlusTree<?,?> tree, PageHandler<?,R> hnd)
Wraps givenhnd.- Parameters:
tree- Instance ofBPlusTreewhere given is used.hnd- Page handler to wrap.- Returns:
- Wrapped version of given
hnd.
-
-