
com.sirolf2009.util.retry.RetryStrategy Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of util Show documentation
Show all versions of util Show documentation
A collection of my common utilities
The newest version!
package com.sirolf2009.util.retry;
import com.sirolf2009.util.retry.RetryResult;
import java.util.function.Supplier;
@SuppressWarnings("all")
public interface RetryStrategy {
public abstract RetryResult run(final Supplier supplier);
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy