From 9b779b4c9b6557b6841d61f444cff888681651f4 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Mon, 25 Sep 2023 14:38:36 +0200 Subject: [PATCH] RequestState - Added new enum member `TIMEDOUT` for when the future times out --- source/doap/client/request.d | 7 ++++++- 1 file changed, 6 insertions(+), 1 deletion(-) diff --git a/source/doap/client/request.d b/source/doap/client/request.d index d27071f..d23f7c3 100644 --- a/source/doap/client/request.d +++ b/source/doap/client/request.d @@ -280,7 +280,12 @@ public enum RequestState /** * The future was cancelled */ - CANCELLED + CANCELLED, + + /** + * The future timed out + */ + TIMEDOUT } /**