Go to file
2017-01-23 11:03:36 +01:00
examples Fix compile error in http server example. 2017-01-23 11:03:36 +01:00
source/eventcore Fix Linux build. 2017-01-23 10:38:09 +01:00
tests Fix DNS test issue on macOS. 2017-01-22 22:23: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 Exclude more test combinations. 2017-01-22 22:25:27 +01:00
appveyor.yml Always build x64 with LDC/Windows. 2017-01-23 10:13:08 +01:00
dub.sdl Fully fix the Win64 build (test might still fail). 2017-01-23 10:03:36 +01:00
README.md Add DUB and AppVeyor badges. 2017-01-23 09:06:28 +01:00
travis-ci.sh Run tests with the actually selected configurations and fix the tested OS/config combinations. 2017-01-22 21:41:09 +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.

DUB Package Posix Build Status Windows 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¹
LibasyncEventDriver —¹ —¹ —¹ —¹

¹ planned, but not currenly implemented

Driver development status

Feature SelectEventDriver EpollEventDriver WinAPIEventDriver KqueueEventDriver
TCP Sockets yes yes yes
UDP Sockets yes yes yes
USDS yes yes yes
DNS yes yes yes
Timers yes yes yes yes
Events yes yes yes yes
Unix Signals yes² yes²
Files yes yes yes yes
UI Integration yes¹ 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