RequestState

- Added new enum member `TIMEDOUT` for when the future times out
This commit is contained in:
Tristan B. Velloza Kildaire 2023-09-25 14:38:36 +02:00
parent 237cde4169
commit 9b779b4c9b

View File

@ -280,7 +280,12 @@ public enum RequestState
/**
* The future was cancelled
*/
CANCELLED
CANCELLED,
/**
* The future timed out
*/
TIMEDOUT
}
/**