Skip to content
This repository has been archived by the owner on Jan 5, 2021. It is now read-only.

Commit

Permalink
release blocking of UI Thread in event driven single step execution
Browse files Browse the repository at this point in the history
  • Loading branch information
andreasmuelder committed Sep 17, 2018
1 parent c6a3b90 commit 6335f4e
Showing 1 changed file with 2 additions and 1 deletion.
Expand Up @@ -206,7 +206,8 @@ public void resume() {

@Override
public void step() {
work();
Thread thread = new Thread(queueWorker);
thread.start();
}

@Override
Expand Down

0 comments on commit 6335f4e

Please sign in to comment.