Skip to content

Instantly share code, notes, and snippets.

@iyengarajay
Last active July 3, 2016 09:03
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 iyengarajay/7add2d0f73a6e8eda85d73a78119b8da to your computer and use it in GitHub Desktop.
Save iyengarajay/7add2d0f73a6e8eda85d73a78119b8da to your computer and use it in GitHub Desktop.
Thread thread = new Thread(new Runnable()
{
@Override
public void run()
{
System.out.println("Do something In the thread...");
}
});
thread.start();
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment