diff --git a/dub.json b/dub.json index f6c277e..0ce7249 100644 --- a/dub.json +++ b/dub.json @@ -9,5 +9,6 @@ "description": "Tag-based asynchronous messaging framework", "license": "LGPL-3.0", "name": "tristanable", - "targetType": "library" + "targetType": "library", + "sourcePaths": ["source/tristanable"] } \ No newline at end of file diff --git a/source/tristanable/garbage.d b/source/tristanable/garbage.d index 6f2dfe5..208d7b0 100644 --- a/source/tristanable/garbage.d +++ b/source/tristanable/garbage.d @@ -31,6 +31,7 @@ public final class GarbageCollector : Thread requestQueueVariable = cast(Request[]*)manager.getQueueVariable(); } + /* TODO: Add timeout ability */ private void cleaner() { while(true) @@ -38,7 +39,6 @@ public final class GarbageCollector : Thread /* Lock the queue */ manager.lockQueue(); - /* TODO: Add clean up here */ /* Construct a new list */ Request[] newList;