Initialize() public static method

public static Initialize ( System treefile, System blockfile, int KeyLength ) : BplusTreeBytes
treefile System
blockfile System
KeyLength int
return BplusTreeBytes
Example #1
0
        public static BplusTree Initialize(Stream treefile, Stream blockfile, int keyLength, int cultureId,
                                           int nodesize, int buffersize)
        {
            BplusTreeBytes tree = BplusTreeBytes.Initialize(treefile, blockfile, keyLength, cultureId, nodesize, buffersize);

            return(new BplusTree(tree));
        }
Example #2
0
        public static BplusTree Initialize(System.IO.Stream treefile, System.IO.Stream blockfile, int KeyLength, int CultureId,
                                           int nodesize, int buffersize)
        {
            BplusTreeBytes tree = BplusTreeBytes.Initialize(treefile, blockfile, KeyLength, CultureId, nodesize, buffersize);

            return(new BplusTree(tree));
        }
Example #3
0
        public static BplusTree Initialize(string treefileName, string blockfileName, int KeyLength, int CultureId,
                                           int nodesize, int buffersize)
        {
            BplusTreeBytes tree = BplusTreeBytes.Initialize(treefileName, blockfileName, KeyLength, CultureId, nodesize, buffersize);

            return(new BplusTree(tree));
        }
Example #4
0
 public static xBplusTreeBytes Initialize(string treefileName, string blockfileName, int PrefixLength, int CultureId,
                                          int nodesize, int buffersize)
 {
     return(new xBplusTreeBytes(
                BplusTreeBytes.Initialize(treefileName, blockfileName, PrefixLength, CultureId, nodesize, buffersize),
                PrefixLength));
 }
Example #5
0
 public static xBplusTreeBytes Initialize(System.IO.Stream treefile, System.IO.Stream blockfile, int PrefixLength, int CultureId,
                                          int nodesize, int buffersize)
 {
     return(new xBplusTreeBytes(
                BplusTreeBytes.Initialize(treefile, blockfile, PrefixLength, CultureId, nodesize, buffersize),
                PrefixLength));
 }
Example #6
0
 public new static hBplusTreeBytes Initialize(Stream treefile, Stream blockfile, int PrefixLength, int cultureId,
                                              int nodesize, int buffersize)
 {
     return(new hBplusTreeBytes(
                BplusTreeBytes.Initialize(treefile, blockfile, PrefixLength, cultureId, nodesize, buffersize),
                PrefixLength));
 }
Example #7
0
        public static BplusTree Initialize(System.IO.Stream treefile, System.IO.Stream blockfile, int KeyLength)
        {
            BplusTreeBytes tree = BplusTreeBytes.Initialize(treefile, blockfile, KeyLength);

            return(new BplusTree(tree));
        }
Example #8
0
        public static BplusTree Initialize(string treefileName, string blockfileName, int KeyLength)
        {
            BplusTreeBytes tree = BplusTreeBytes.Initialize(treefileName, blockfileName, KeyLength);

            return(new BplusTree(tree));
        }
Example #9
0
        public static BplusTree Initialize(string treefileName, string blockfileName, int keyLength, int cultureId)
        {
            BplusTreeBytes tree = BplusTreeBytes.Initialize(treefileName, blockfileName, keyLength, cultureId);

            return(new BplusTree(tree));
        }
Example #10
0
 public static xBplusTreeBytes Initialize(System.IO.Stream treefile, System.IO.Stream blockfile, int PrefixLength)
 {
     return(new xBplusTreeBytes(
                BplusTreeBytes.Initialize(treefile, blockfile, PrefixLength),
                PrefixLength));
 }
Example #11
0
 public static xBplusTreeBytes Initialize(string treefileName, string blockfileName, int PrefixLength)
 {
     return(new xBplusTreeBytes(
                BplusTreeBytes.Initialize(treefileName, blockfileName, PrefixLength),
                PrefixLength));
 }
Example #12
0
 public new static hBplusTreeBytes Initialize(Stream treefile, Stream blockfile, int PrefixLength)
 {
     return(new hBplusTreeBytes(
                BplusTreeBytes.Initialize(treefile, blockfile, PrefixLength),
                PrefixLength));
 }
Example #13
0
 public new static hBplusTreeBytes Initialize(string treefileName, string blockfileName, int PrefixLength, int cultureId)
 {
     return(new hBplusTreeBytes(
                BplusTreeBytes.Initialize(treefileName, blockfileName, PrefixLength, cultureId),
                PrefixLength));
 }
Example #14
0
 public new static hBplusTreeBytes Initialize(System.IO.Stream treefile, System.IO.Stream blockfile, int PrefixLength, int CultureId)
 {
     return(new hBplusTreeBytes(
                BplusTreeBytes.Initialize(treefile, blockfile, PrefixLength, CultureId),
                PrefixLength));
 }