Enum TaskEvent
High level state change events for a Task
enum TaskEvent
: int { ... }
Enum members
Name | Description |
---|---|
end
|
Ended normally |
fail
|
Ended with an exception |
postStart
|
After the fiber has returned for the first time (by yield or exit) |
preStart
|
Just about to invoke the fiber which starts execution |
resume
|
Resumed from a prior yield |
schedule
|
Scheduled for execution |
start
|
Just about to start execution |
yield
|
Temporarily paused |