Skip to content

tusharmndr/retry-function-wrapper

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

retry-function-wrapper

This is a simple helper library to retry any function. This library compiles only on Java 8.

Usage

      int MAX_RETRY = 3;
      RetryUtil.<Boolean>retry(MAX_RETRY,
          () -> {
                    //Function to retry
                    return true;
           });

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages