Skip to content

Instantly share code, notes, and snippets.

@tinsukE
Created May 30, 2018 10:02
Show Gist options
  • Save tinsukE/d00253a967e7ee353a404a2dc28f0d19 to your computer and use it in GitHub Desktop.
Save tinsukE/d00253a967e7ee353a404a2dc28f0d19 to your computer and use it in GitHub Desktop.
Simple Callback
interface Callback<T> {
fun onSuccess(result: T)
fun onError(error: Error)
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment