Function setIdleHandler
Sets a callback that is called whenever no events are left in the event queue.
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 fals will instead wait until another event has arrived first.
Prototypes
void setIdleHandler( void delegate() del ); void setIdleHandler( bool delegate() del );
Authors
Sönke Ludwig
Copyright
© 2012-2013 RejectedSoftware e.K.
License
Subject to the terms of the MIT license, as written in the included LICENSE.txt file.