Skip to content

Instantly share code, notes, and snippets.

@Nasawa
Created July 19, 2014 01:22
Show Gist options
  • Save Nasawa/ac224dd98d7344907bba to your computer and use it in GitHub Desktop.
Save Nasawa/ac224dd98d7344907bba to your computer and use it in GitHub Desktop.
public class MyRunnable implements Runnable {
private Data data;
public MyRunnable(Data _data) {
this.data = _data;
}
public void run() {
...
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment