##// END OF EJS Templates
JsonXmlReader performance tuning...
JsonXmlReader performance tuning JsonScanner now operates strings and doesn't parses number and literals. Added SerializationHelpers to common serialize/deserialize operations

File last commit:

r13:b0feb5b9ad1c promises
r229:5f7a3e1d32b9 v2
Show More
IProgressNotifier.cs
14 lines | 374 B | text/x-csharp | CSharpLexer
/ Implab / IProgressNotifier.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Implab
{
public interface IProgressNotifier
{
event EventHandler<ValueEventArgs<string>> MessageUpdated;
event EventHandler<ValueEventArgs<float>> ProgressUpdated;
event EventHandler<ProgressInitEventArgs> ProgressInit;
}
}