Read() public method

public Read ( BufferReader reader ) : void
reader BufferReader
return void
Esempio n. 1
0
        public override void Read(BufferReader reader, RecordHeader header)
        {
            base.Read(reader, header);

            for (; ; )
            {
                DeltaOperation operation = new DeltaOperation();
                operation.Read(reader);
                if (operation.Command == DeltaCommand.Stop) break;
                operations.AddLast(operation);
            }
        }
Esempio n. 2
0
        public override void Read(BufferReader reader, RecordHeader header)
        {
            base.Read(reader, header);

            for (; ;)
            {
                DeltaOperation operation = new DeltaOperation();
                operation.Read(reader);
                if (operation.Command == DeltaCommand.Stop)
                {
                    break;
                }
                operations.AddLast(operation);
            }
        }