From 4ef69ac67089978220292bfb4e3f4299614a6acf Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Wed, 3 May 2023 21:58:06 +0200 Subject: [PATCH] Engine - Documented `makeRequest(Request req)` --- source/tasky/engine.d | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/source/tasky/engine.d b/source/tasky/engine.d index a0b7ebd..fad2a10 100644 --- a/source/tasky/engine.d +++ b/source/tasky/engine.d @@ -14,6 +14,15 @@ public class Engine // TODO: Continue working on this + /** + * Takes a request and sends it through to the endpoint + * afterwhich we block for a response and when we get one + * we run the handler, specified by the original request, + * on the response data + * + * Params: + * req = the `Request` to send + */ public void makeRequest(Request req) { /* Get a unique queue */