Skip to content

Instantly share code, notes, and snippets.

@eleinadani
Last active February 5, 2019 16:13
Show Gist options
  • Save eleinadani/e0327d983abc1133d0fce8f7026fa818 to your computer and use it in GitHub Desktop.
Save eleinadani/e0327d983abc1133d0fce8f7026fa818 to your computer and use it in GitHub Desktop.
Thread thread = new Thread(new Runnable() {
@Override
public void run() {
while (true) {
json.execute(42,43).asString();
}
}
});
thread.start();
while (true) {
json.execute(44,45).asString();
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment