Esempio n. 1
0
 /// <summary>
 /// Sets the new status of the <see cref="OpenCLUserEvent"/>.
 /// </summary>
 /// <param name="status"> The new status of the <see cref="OpenCLUserEvent"/>. Allowed value is <see cref="OpenCLCommandExecutionStatus.Complete"/>. </param>
 public void SetStatus(OpenCLCommandExecutionStatus status)
 {
     SetStatus((int)status);
 }
 /// <summary>
 /// Creates a new <c>OpenCLCommandStatusArgs</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 OpenCLCommandStatusArgs(OpenCLEventBase ev, OpenCLCommandExecutionStatus status)
 {
     Event = ev;
     Status = status;
 }
Esempio n. 3
0
 /// <summary>
 /// Creates a new <c>OpenCLCommandStatusArgs</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 OpenCLCommandStatusArgs(OpenCLEventBase ev, OpenCLCommandExecutionStatus status)
 {
     Event  = ev;
     Status = status;
 }
 /// <summary>
 /// Sets the new status of the <see cref="OpenCLUserEvent"/>.
 /// </summary>
 /// <param name="status"> The new status of the <see cref="OpenCLUserEvent"/>. Allowed value is <see cref="OpenCLCommandExecutionStatus.Complete"/>. </param>
 public void SetStatus(OpenCLCommandExecutionStatus status)
 {
     SetStatus((int)status);
 }