Skip to content

Instantly share code, notes, and snippets.

@furkanaskin
Created September 12, 2019 15:09
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 furkanaskin/f354bc16b6177424da065596c2837510 to your computer and use it in GitHub Desktop.
Save furkanaskin/f354bc16b6177424da065596c2837510 to your computer and use it in GitHub Desktop.
Runnable runnable = new Runnable() {
public void run() {
// Burada network çağrısı yapılır.
}
};
Thread mythread = new Thread(runnable);
mythread.start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment