Skip to content

Instantly share code, notes, and snippets.

@HVHO
Created December 5, 2021 08:07
Show Gist options
  • Save HVHO/9a29fcc4855e26e6c1675d2544762fe7 to your computer and use it in GitHub Desktop.
Save HVHO/9a29fcc4855e26e6c1675d2544762fe7 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