##// END OF EJS Templates
Bound promise to CancellationToken...
Bound promise to CancellationToken Added new states to ExecutionSate enum. Added Safe.Guard() method to handle cleanup of the result of the promise

File last commit:

r13:b0feb5b9ad1c promises
r209:a867536c68fc 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;
}
}