Exemplo n.º 1
0
            internal ZBlock(FixedArrayComboListPart parent, int zblockID, int addkeybuflen, int addvaluebuflen)
            {
                this.parent = parent;
                this.zblockID = zblockID;

                this.keyblockbuflen = addkeybuflen;
                this.valueblockbuflen = addvaluebuflen;

                fzkeyblockfilename = CreateFileName(zblockID, "key_unsorted");
                fzvalueblockfilename = CreateFileName(zblockID, "value");
                ensurefzblock(false);
            }
Exemplo n.º 2
0
 internal ACLLoadOutput(FixedArrayComboListPart acl)
 {
     this.acl = acl;
 }
Exemplo n.º 3
0
 internal FixedArrayComboListEnumerator(FixedArrayComboListPart acl, IBeforeReduceFixed plugin)
 {
     this.acl = acl;
     this.input = acl.GetEntriesInput();
     this.output = acl.CreatePluginOutput();
     this.plugin = plugin;
 }