Compare commits

...

2 Commits

Author SHA1 Message Date
Tristan B. Velloza Kildaire bb1dcef991 Engine
- `makeRequest(Request)` now cleans up by removing the adhoc `Queue` it registered in the beginning ofd the process
2023-05-04 09:55:00 +02:00
Tristan B. Velloza Kildaire 20da370f0e - Upgraded to `tristanable` `v3.2.0-beta` which introduces the required `releaseQueue(Queue)` and `releaseQueue_nothrow(Queue)` methods 2023-05-04 09:54:15 +02:00
2 changed files with 4 additions and 1 deletions

View File

@ -4,7 +4,7 @@
], ],
"copyright": "Copyright © 2023, Tristan B. Kildaire", "copyright": "Copyright © 2023, Tristan B. Kildaire",
"dependencies": { "dependencies": {
"tristanable": "3.1.9-beta" "tristanable": "3.2.0-beta"
}, },
"description": "Tagged network-message task engine", "description": "Tagged network-message task engine",
"license": "LGPL v3", "license": "LGPL v3",

View File

@ -40,5 +40,8 @@ public class Engine
/* Run the response handler with the response */ /* Run the response handler with the response */
req.process(resp); req.process(resp);
/* De-register the queue */
tManager.releaseQueue(newQueue);
} }
} }