Need Enum
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
This is the stage of the wait, showing what the wait needs during its lifecycle.
public enum Need
type Need =
Public Enum Need
- Inheritance
-
Need
Fields
Name | Value | Description |
---|---|---|
None | 0 | The wait does not need anything. |
Wait | 1 | The wait needs an item to be posted. |
Poll | 2 | The wait needs to be polled for execution after an item has been posted. |
Call | 3 | The wait is in the middle of executing the rest delegate. |
Done | 4 | The wait has completed executing the rest delegate. |