Go to file
2017-01-22 12:36:27 +01:00
examples Update examples. 2017-01-15 21:45:18 +01:00
source/eventcore Fix compilation and event behavior on macOS. 2017-01-22 12:36:27 +01:00
tests Implement proper zero size wait semantics for Posix stream sockets. 2017-01-22 10:47:58 +01:00
.editorconfig Add .editorconfig. 2017-01-16 21:40:14 +01:00
.gitignore Initial version with sone partial Posix implementations. 2016-01-11 21:33:49 +01:00
.travis.yml Test more configurations. 2016-12-19 22:23:49 +01:00
dub.sdl Fix compilation and event behavior on macOS. 2017-01-22 12:36:27 +01:00
README.md Add more drivers/operating systems to the support matrix. 2017-01-22 11:46:48 +01:00
travis-ci.sh Update test script to take into account the selected test configuration. 2016-12-19 22:30:15 +01: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 macOS FreeBSD Android iOS
SelectEventDriver yes yes yes¹ yes¹
EpollEventDriver yes
WinAPIEventDriver yes
KqueueEventDriver yes¹ yes¹
LibasyncEevnetDriver —¹ —¹ —¹ —¹

¹ planned, but not currenly implemented

Driver development status

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

¹ Manually, by adopting the X11 display connection socket ² Currently only supported on Linux

Open questions

  • Error code reporting
  • Adopting existing file descriptors (done for files)
  • Enqueued writes
  • Use the type system to prohibit passing thread-local handles to foreign threads