Initialize() public static method

public static Initialize ( System treefile, System blockfile, int KeyLength ) : BplusTreeBytes
treefile System
blockfile System
KeyLength int
return BplusTreeBytes
Exemplo n.º 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));
        }
Exemplo n.º 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));
        }
Exemplo n.º 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));
        }
Exemplo n.º 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));
 }
Exemplo n.º 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));
 }
Exemplo n.º 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));
 }
Exemplo n.º 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));
        }
Exemplo n.º 8
0
        public static BplusTree Initialize(string treefileName, string blockfileName, int KeyLength)
        {
            BplusTreeBytes tree = BplusTreeBytes.Initialize(treefileName, blockfileName, KeyLength);

            return(new BplusTree(tree));
        }
Exemplo n.º 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));
        }
Exemplo n.º 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));
 }
Exemplo n.º 11
0
 public static xBplusTreeBytes Initialize(string treefileName, string blockfileName, int PrefixLength)
 {
     return(new xBplusTreeBytes(
                BplusTreeBytes.Initialize(treefileName, blockfileName, PrefixLength),
                PrefixLength));
 }
Exemplo n.º 12
0
 public new static hBplusTreeBytes Initialize(Stream treefile, Stream blockfile, int PrefixLength)
 {
     return(new hBplusTreeBytes(
                BplusTreeBytes.Initialize(treefile, blockfile, PrefixLength),
                PrefixLength));
 }
Exemplo n.º 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));
 }
Exemplo n.º 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));
 }