Skip to content

Instantly share code, notes, and snippets.

@HVHO
Created December 5, 2021 14:13
Show Gist options
  • Save HVHO/89429ab83798e114cd7c190b1f3bf83b to your computer and use it in GitHub Desktop.
Save HVHO/89429ab83798e114cd7c190b1f3bf83b to your computer and use it in GitHub Desktop.
@Retryable()
fun doWithRetry(input : String) {
// do something
}
@Recover
fun recover(exception: RuntimeException, input : String) : Unit {
// do someThing
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment