Enum Status

Enum Documentation

enum class exathread::Status

The current state of a future.

Values:

enumerator Pending

The task has not yet been scheduled for execution.

enumerator Scheduled

The task has been scheduled for execution but has not begun.

enumerator Executing

The task is currently executing.

enumerator Yielded

The task has yielded temporarily.

enumerator Failed

The task completed with an exception.

enumerator Complete

The task completed successfully.