/// <summary> /// Creates a new <c>ComputeCommandStatusArgs</c> instance. /// </summary> /// <param name="ev"> The event of the command that had its status changed. </param> /// <param name="status"> The status of the command. </param> public ComputeCommandStatusArgs(IComputeEvent ev, int status) : this(ev, (ComputeCommandExecutionStatus)status) { }
/// <summary> /// Creates a new <c>ComputeCommandStatusArgs</c> instance. /// </summary> /// <param name="ev"> The event representing the command that had its status changed. </param> /// <param name="status"> The status of the command. </param> public ComputeCommandStatusArgs(IComputeEvent ev, ComputeCommandExecutionStatus status) { Event = ev; Status = status; }