Merge pull request #6274 from geky/events-doc-periodic

events: Added note about immediate firing of periodic events
pull/6211/merge
Cruz Monrreal 2018-03-15 10:48:22 -05:00 committed by GitHub
commit b97c7d8263
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 3 additions and 0 deletions

View File

@ -701,6 +701,9 @@ public:
}
/** Calls an event on the queue periodically
*
* @note The first call_every event occurs after the specified delay.
* To create a periodic event that fires immediately, @see Event.
*
* The specified callback will be executed in the context of the event
* queue's dispatch loop.