Added new depepdancy.

This commit is contained in:
Tristan B. Kildaire 2020-06-22 22:23:33 +02:00
parent 47e9059a66
commit 63119aab91
2 changed files with 3 additions and 0 deletions

View File

@ -4,6 +4,7 @@ import tristanable.watcher : Watcher;
import tristanable.request : Request;
import std.socket : Socket;
import core.sync.mutex : Mutex;
import bmessage : sendMessage;
/* TODO: Watcher class to watch for stuff, and add to manager's queues */
/* TODO: maneger class to use commands on, enqueue and wait for dequeue */
@ -49,6 +50,7 @@ public final class Manager
/* Send the message */
/* Create a new Request */
Request newRequest = new Request(tag);

View File

@ -3,6 +3,7 @@ module tristanable.watcher;
import tristanable.manager : Manager;
import std.socket : Socket;
import core.thread : Thread;
import bmessage : receiveMessage;
/* TODO: Watcher class to watch for stuff, and add to manager's queues */
/* TODO: maneger class to use commands on, enqueue and wait for dequeue */