##// END OF EJS Templates
Added ResetState to RunnableComponent to reset in case of failure...
Added ResetState to RunnableComponent to reset in case of failure Added StateChanged event to IRunnable Renamed Promise.SUCCESS -> Promise.Success Added Promise.FromException Renamed Bundle -> PromiseAll in PromiseExtensions

File last commit:

r12:eb418ba8275b promises
r205:8200ab154c8a v2
Show More
ProgressInitEventArgs.cs
36 lines | 732 B | text/x-csharp | CSharpLexer
/ Implab / ProgressInitEventArgs.cs
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
namespace Implab
{
[Serializable]
public class ProgressInitEventArgs: EventArgs
{
public float MaxProgress
{
get;
private set;
}
public float CurrentProgress
{
get;
private set;
}
public string Message
{
get;
private set;
}
public ProgressInitEventArgs(float current, float max, string message)
{
this.MaxProgress = max;
this.CurrentProgress = current;
this.Message = message;
}
}
}