Skip to content

Instantly share code, notes, and snippets.

Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save goncalossilva/0964bd49ff117d36b75b7c242c233d0f to your computer and use it in GitHub Desktop.
Save goncalossilva/0964bd49ff117d36b75b7c242c233d0f to your computer and use it in GitHub Desktop.
// On a Huawei Watch
// 2225ms
for (i in 0..10000) {
launch(UI) {
withContext(DefaultDispatcher) { }
}
}
// 10ms
launch(UI) {
for (i in 0..10000) {
withContext(DefaultDispatcher) { }
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment