ReOpen() public static method

public static ReOpen ( System treefile, System blockfile ) : BplusTreeBytes
treefile System
blockfile System
return BplusTreeBytes
Example #1
0
        public static xBplusTreeBytes ReOpen(System.IO.Stream treefile, System.IO.Stream blockfile)
        {
            BplusTreeBytes tree         = BplusTreeBytes.ReOpen(treefile, blockfile);
            int            prefixLength = tree.MaxKeyLength();

            return(new xBplusTreeBytes(tree, prefixLength));
        }
Example #2
0
        public static xBplusTreeBytes ReOpen(string treefileName, string blockfileName)
        {
            BplusTreeBytes tree         = BplusTreeBytes.ReOpen(treefileName, blockfileName);
            int            prefixLength = tree.MaxKeyLength();

            return(new xBplusTreeBytes(tree, prefixLength));
        }
Example #3
0
        public new static hBplusTreeBytes ReOpen(Stream treefile, Stream blockfile)
        {
            BplusTreeBytes tree         = BplusTreeBytes.ReOpen(treefile, blockfile);
            int            prefixLength = tree.MaxKeyLength();

            return(new hBplusTreeBytes(tree, prefixLength));
        }
Example #4
0
        public static BplusTree ReOpen(string treefileName, string blockfileName)
        {
            BplusTreeBytes tree = BplusTreeBytes.ReOpen(treefileName, blockfileName);

            return(new BplusTree(tree));
        }
Example #5
0
        public static BplusTree ReOpen(System.IO.Stream treefile, System.IO.Stream blockfile)
        {
            BplusTreeBytes tree = BplusTreeBytes.ReOpen(treefile, blockfile);

            return(new BplusTree(tree));
        }