2019-11-21 14:26:25 +00:00
|
|
|
|
namespace Wabbajack.Common.CSP
|
2019-11-12 05:14:04 +00:00
|
|
|
|
{
|
|
|
|
|
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
|
|
|
|
|
}
|
|
|
|
|
}
|