vibe.d beta banner
get vibe.d
0.10.0

Asynchronous I/O that doesn’t get in your way, written in D

Function setIdleHandler

Sets a callback that is called whenever no events are left in the event queue.

void setIdleHandler (
  nothrow @safe void delegate() del
) nothrow @safe;

void setIdleHandler (
  nothrow @safe bool delegate() del
) nothrow @safe;

The callback delegate is called whenever all events in the event queue have been processed. Returning true from the callback will cause another idle event to be triggered immediately after processing any events that have arrived in the meantime. Returning false will instead wait until another event has arrived first.

Authors

Sönke Ludwig

Copyright

© 2012-2020 Sönke Ludwig

License

Subject to the terms of the MIT license, as written in the included LICENSE.txt file.