Mercurial > pub > ImplabNet
annotate Implab/Formats/StringScanner.cs @ 207:558f34b2fb50 v2
added Safe.DispatchEvent() a legacy equivalent for '?.Invoke()'
added Safe.Dispose(IEnumerable)
added PromiseExtensions.CancellationPoint to add a cancellation point to the chain of promises
added IPromise<T> PromiseExtensions.Then<T>(this IPromise<T> that, Action<T> success) overloads
added PromiseExtensions.Error() overloads to handle a error or(and) a cancellation
author | cin |
---|---|
date | Wed, 09 Nov 2016 12:03:22 +0300 |
parents | 76e8f2ba12b8 |
children |
rev | line source |
---|---|
176 | 1 using System; |
2 | |
3 namespace Implab.Formats { | |
4 public class StringScanner: TextScanner { | |
5 const int CHUNK_SIZE = 1024; | |
6 | |
182 | 7 public StringScanner(string text) : base(null) { |
8 Safe.ArgumentNotNull(text, "text"); | |
9 var data = text.ToCharArray(); | |
10 Feed(data, 0, data.Length); | |
176 | 11 } |
12 | |
13 protected override int Read(char[] buffer, int offset, int size) { | |
182 | 14 return 0; |
176 | 15 } |
16 } | |
17 } | |
18 |