##// END OF EJS Templates
Reworked cancelation handling, if the cancel handler isn't specified the OperationCanceledException will be handled by the error handler...
Reworked cancelation handling, if the cancel handler isn't specified the OperationCanceledException will be handled by the error handler Any unhandled OperationCanceledException will cause the promise cancelation

File last commit:

r183:4f82e0f161c3 ref20160224
r187:dd4a3590f9c6 ref20160224
Show More
ReaderScanner.cs
30 lines | 845 B | text/x-csharp | CSharpLexer
using System;
using System.IO;
namespace Implab.Formats {
public class ReaderScanner: TextScanner {
const int CHUNK_SIZE = 1024*4;
const int BUFFER_MAX = CHUNK_SIZE*1024;
readonly TextReader m_reader;
public ReaderScanner(TextReader reader, int limit, int chunk) : base(limit, chunk) {
Safe.ArgumentNotNull(reader, "reader");
m_reader = reader;
}
public ReaderScanner(TextReader reader) : this(reader, BUFFER_MAX, CHUNK_SIZE) {
}
protected override int Read(char[] buffer, int offset, int size) {
return m_reader.Read(buffer, offset, size);
}
protected override void Dispose(bool disposing) {
if (disposing)
Safe.Dispose(m_reader);
base.Dispose(disposing);
}
}
}