mirror of
https://github.com/wabbajack-tools/wabbajack.git
synced 2024-08-30 18:42:17 +00:00
26 lines
686 B
C#
26 lines
686 B
C#
namespace Wabbajack.Common.CSP
|
|
{
|
|
public enum AsyncResult : int
|
|
{
|
|
/// <summary>
|
|
/// The channel was closed, so the returned value is meaningless
|
|
/// </summary>
|
|
Closed,
|
|
|
|
/// <summary>
|
|
/// The handler was canceled, so the returned value is meaningless
|
|
/// </summary>
|
|
Canceled,
|
|
|
|
/// <summary>
|
|
/// The callback was enqueued into the pending operations buffer, return value is useless
|
|
/// </summary>
|
|
Enqueued,
|
|
|
|
/// <summary>
|
|
/// The operation passed on the current thread, return the current value as the response value
|
|
/// </summary>
|
|
Completed
|
|
}
|
|
}
|