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

org.fisco.bcos.web3j.utils.AttemptsConf Maven / Gradle / Ivy

There is a newer version: 2.6.6
Show newest version
package org.fisco.bcos.web3j.utils;


public class AttemptsConf {
    public static Integer sleepDuration = 1500;
    public static Integer attempts  = 40;
    public AttemptsConf(int sleepDuration,int attempts){
        this.sleepDuration = sleepDuration;
        this.attempts = attempts;
    }

    public int getSleepDuration() {
        return sleepDuration;
    }

    public void setSleepDuration(int sleepDuration) {
        AttemptsConf.sleepDuration = sleepDuration;
    }

    public int getAttempts() {
        return attempts;
    }

    public void setAttempts(int attempts) {
        AttemptsConf.attempts = attempts;
    }

}





© 2015 - 2024 Weber Informatics LLC | Privacy Policy