private long nextPuid;                               // stateful

            internal TemporalLinkCellRd(LinkCell linkCell)
            {
                this.linkCell     = linkCell;
                this.decompressor = this.linkCell.NewDecompressor();
                this.nextPuid     = 0;
            }
Example #2
0
File: Cell.cs Project: pszmyd/SHS
            private long nextPuid; // stateful

            #endregion Fields

            #region Constructors

            internal LinkCellRd(LinkCell linkCell)
            {
                this.linkCell = linkCell;
                this.decompressor = this.linkCell.NewDecompressor();
                this.nextPuid = 0;
            }