Mercurial > pub > ImplabNet
view Implab/ICancellable.cs @ 236:302ca905c19e v2
JsonReader optimizations
author | cin |
---|---|
date | Tue, 21 Nov 2017 14:57:58 +0300 |
parents | 0fa293bb1351 |
children |
line wrap: on
line source
using System; namespace Implab { public interface ICancellable { void Cancel(); void Cancel(Exception reason); } }