-
Notifications
You must be signed in to change notification settings - Fork 16
ExecuteResult
ZjzMisaka edited this page Nov 1, 2025
·
12 revisions
[Get only] Work id.
WorkID ID;[Get only] Result of the work.
TResult Result;[Get only] Status of the work.
Status Status;[Get only] Is result found.
bool IsFound;[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]
Measures the total wall-clock time that the work’s code runs on workers,
excluding time spent awaiting external I/O or being suspended off-thread.
public long Duration;[Get only] Retry information.
public RetryInfo RetryInfo;enum Status { Succeed, Failed, Canceled, Stopped, ForceStopped };- Sync | Async
- Pool Control | Work Control
- Divide And Conquer
- Thread Pool Sizing
- Work Callback | Default Callback
- Rejection Policy
- 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 | Deque)
- Load Balancing
- Low-Contention Design
Core
Results
Options