namespace Wabbajack.Common.CSP { public enum AsyncResult : int { /// /// The channel was closed, so the returned value is meaningless /// Closed, /// /// The handler was canceled, so the returned value is meaningless /// Canceled, /// /// The callback was enqueued into the pending operations buffer, return value is useless /// Enqueued, /// /// The operation passed on the current thread, return the current value as the response value /// Completed } }