From c6611fc26ba1bdf36ee437585bf15f29e3805f67 Mon Sep 17 00:00:00 2001 From: "Tristan B. Velloza Kildaire" Date: Wed, 5 Apr 2023 08:44:10 +0200 Subject: [PATCH] Watcher - Deleted old module that was unused --- source/tristanable/watcher.d | 37 ------------------------------------ 1 file changed, 37 deletions(-) delete mode 100644 source/tristanable/watcher.d diff --git a/source/tristanable/watcher.d b/source/tristanable/watcher.d deleted file mode 100644 index 9550b40..0000000 --- a/source/tristanable/watcher.d +++ /dev/null @@ -1,37 +0,0 @@ -module tristanable.watcher; - -import core.thread : Thread; -import tristanable.manager : Manager; -import std.socket; - -/** - * Watches the socket on a thread of its own, - * performs the decoding of the incoming messages - * and places them into the correct queues via - * the associated Manager instance - */ -public class Watcher : Thread -{ - /** - * The associated manager to use - * such that we can place new mail - * into their respective inboxes (queues) - */ - private Manager manager; - - /** - * The underlying socket to read from - */ - private Socket socket; - - - - - private void watch() - { - while(true) - { - // TODO: Implement me - } - } -} \ No newline at end of file