Added new depepdancy.
This commit is contained in:
parent
47e9059a66
commit
63119aab91
|
@ -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);
|
||||
|
||||
|
|
|
@ -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 */
|
||||
|
|
Loading…
Reference in New Issue