All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.aliyun.openservices.log.http.comm.NoRetryStrategy Maven / Gradle / Ivy

package com.aliyun.openservices.log.http.comm;

/**
 * No retry strategy that does nothing when HTTP request fails.
 */
public class NoRetryStrategy extends RetryStrategy {

    @Override
    public boolean shouldRetry(Exception ex, RequestMessage request, int retries) {
        return false;
    }

}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy