summaryrefslogtreecommitdiff
path: root/platform/android/src/timer.cpp
Commit message (Collapse)AuthorAgeFilesLines
* [core] remove trailing whitespace, add trailing newlines, add space after //Konstantin Käfer2017-01-271-1/+1
|
* [android] timer - prevent overflow in due timeIvo van Dongen2016-09-231-2/+2
|
* Revert "[android] Do not create Timers on Default main loops"Thiago Marcos P. Santos2016-07-061-2/+0
| | | | This reverts commit 13cd75f099c92b6f0862db00eee8ff4a78a73316.
* [android] Do not create Timers on Default main loopsThiago Marcos P. Santos2016-07-051-1/+3
| | | | | | | | | Not supported, because we don't have control over the Looper timeout like we do for Loopers we create. On the main thread, Android takes care of making the application sleep and sets an arbitrary timeout. This could be properly fixed by implementing timers in Java, but we don't really have the use case of timers in the main thread.
* [android] Fix hang when calling Timer::start() twiceThiago Marcos P. Santos2016-07-051-2/+1
| | | | | Calling start() from the callback was making the timer effectively stop.
* [android] Introduce RunLoop based on LooperThiago Marcos P. Santos2016-04-061-0/+78
Also implement a Timer and AsyncTask based on Android's Looper.