diff --git a/source/tristanable/manager.d b/source/tristanable/manager.d index e9adca5..0308af4 100644 --- a/source/tristanable/manager.d +++ b/source/tristanable/manager.d @@ -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); diff --git a/source/tristanable/watcher.d b/source/tristanable/watcher.d index ebdd5e4..e11e037 100644 --- a/source/tristanable/watcher.d +++ b/source/tristanable/watcher.d @@ -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 */