Skip to content

Instantly share code, notes, and snippets.

@HVHO
Created December 5, 2021 08:07
Show Gist options
  • Save HVHO/22a035816f597b8afbc5c17c266c6467 to your computer and use it in GitHub Desktop.
Save HVHO/22a035816f597b8afbc5c17c266c6467 to your computer and use it in GitHub Desktop.
@Service
class RetryableService {
@Autowired
private lateinit var retryTemplate: RetryTemplate
fun run() : Unit {
retryTemplate.execute<Unit, Throwable> {
action()
}
}
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment