From 3636ea2dec045bd575f64a72d20cb54abc339fc0 Mon Sep 17 00:00:00 2001 From: Tristan Hume Date: Sun, 23 Apr 2017 13:36:03 -0400 Subject: [PATCH] Add watching file descriptors to Todo --- Readme.md | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Readme.md b/Readme.md index 1281cfb..8f56197 100644 --- a/Readme.md +++ b/Readme.md @@ -158,10 +158,13 @@ runTask({ }); ``` +It would be better to watch a file descriptor asynchronously in the event loop instead of checking on a timer, but that hasn't been implemented yet, see Todo. + # Todo `ddbus` should be complete for everyday use but is missing some fanciness that it easily could and should have: +- Support for adding file descriptors to event loops like vibe.d so that it only wakes up when messages arrive and not on a timer. - Marshaling of DBus path and file descriptor objects - Better efficiency in some places, particularly the object wrapping allocates tons of delegates for every method.