view Implab/Formats/StringScanner.cs @ 209:a867536c68fc v2

Bound promise to CancellationToken Added new states to ExecutionSate enum. Added Safe.Guard() method to handle cleanup of the result of the promise
author cin
date Wed, 16 Nov 2016 03:06:08 +0300
parents 76e8f2ba12b8
children
line wrap: on
line source

using System;

namespace Implab.Formats {
    public class StringScanner: TextScanner {
        const int CHUNK_SIZE = 1024;

        public StringScanner(string text) : base(null) {
            Safe.ArgumentNotNull(text, "text");
            var data = text.ToCharArray();
            Feed(data, 0, data.Length);
        }

        protected override int Read(char[] buffer, int offset, int size) {
            return 0;
        }
    }
}