Skip to content

Instantly share code, notes, and snippets.

@oktaysenkan
Last active March 3, 2019 17:59
Show Gist options
  • Select an option

  • Save oktaysenkan/6791261e4f53e5de9bd0bbd1c06d9b22 to your computer and use it in GitHub Desktop.

Select an option

Save oktaysenkan/6791261e4f53e5de9bd0bbd1c06d9b22 to your computer and use it in GitHub Desktop.
public void getUserByID(int ID, final Callback<User> callback){
User user = new User();
// Async işlemler örnek olarak web service'e bir request yapmak.
if (işlemlerbaşarılı){
callback.onSuccess(user);
} else {
callback.onFailure("Hata");
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment