-
Notifications
You must be signed in to change notification settings - Fork 7
ExecuteResult
ZjzMisaka edited this page Sep 20, 2024
·
8 revisions
[Get only] Work id.
string ID;
[Get only] Result of the work.
TResult Result;
[Get only] Status of the work.
Status Status;
[Get only] If failed, the exception will be stored here.
Exception Exception;
[Get only] Queue datetime.
DateTime QueueDateTime;
[Get only] Start datetime.
public DateTime StartDateTime;
[Get only] End datetime.
public DateTime EndDateTime;
[Get only] Retry information.
public RetryInfo RetryInfo;
enum Status { Succeed, Failed, Canceled, Stopped, ForceStopped };
- Pool Control | Work Control
- Thread Pool Sizing
- Work Callback | Default Callback
- Parallel Execution
- Work Priority | Thread Priority
- Error Handling
- Work Timeout | Cumulative Work Timeout
- Work Dependency
- Work Group
- Events
- Runtime Status
- Running Timer
- Queue Type (FIFO | LIFO | Custom)
- Load Balancing
- Lock-Free
Core
Results
Options