Go to file
Sönke Ludwig 7e9031439c Remove EventDriverFiles.createTemp() and add adopt() instead.
The rationale is to keep the event loop abstraction at a minimal size. createTemp(), to be generally useful, would also require a getFilename(fd) method and possibly more. adopt() on the other hand is frequently useful for wrapping other libraries.
2016-12-10 15:59:03 +01:00
examples Make all examples/tests single-file packages. 2016-10-07 20:36:09 +02:00
source/eventcore Remove EventDriverFiles.createTemp() and add adopt() instead. 2016-12-10 15:59:03 +01:00
tests Add event test and fix the notify_all==false case. 2016-10-24 00:44:55 +02:00
.gitignore Initial version with sone partial Posix implementations. 2016-01-11 21:33:49 +01:00
.travis.yml Also test the latest DMD beta. 2016-10-07 20:54:22 +02:00
dub.sdl Add AlgebraicChoppedVector as the future base for the event drivers FD map. 2016-10-24 00:12:35 +02:00
README.md Fix Windows driver name in README. 2016-10-19 14:29:18 +02:00
travis-ci.sh Make all examples/tests single-file packages. 2016-10-07 20:36:09 +02:00

EventCore

This is a high-performance native event loop abstraction for D, focused on asynchronous I/O and GUI message integration. The API is callback (delegate) based. For a higher level fiber based abstraction, take a look at vibe.d.

Build Status

Supported drivers and operating systems

Driver Linux Windows OS X FreeBSD
SelectEventDriver yes yes¹ yes¹ yes¹
EpollEventDriver yes no no no
WinAPIEventDriver no yes¹ no no
KqueueEventDriver no no yes¹ yes¹

¹ planned, but not currenly implemented

Driver development status

Feature SelectEventDriver EpollEventDriver WinAPIEventDriver KqueueEventDriver
TCP Sockets yes yes no no
UDP Sockets yes yes no no
USDS yes yes no no
DNS yes yes no no
Timers yes yes no no
Events yes yes no no
Signals yes² yes² no no
Files yes yes no no
UI Integration no no no no
File watcher yes² yes² no no

² Currently only supported on Linux

Open questions

  • Error code reporting
  • Adopting existing file descriptors
  • Enqueued writes