com.github.charlemaznable.varys.config.VarysConfig Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of varys-java-driver Show documentation
Show all versions of varys-java-driver Show documentation
Java client for varys(https://github.com/CharLemAznable/varys).
package com.github.charlemaznable.varys.config;
import com.github.charlemaznable.core.miner.MinerConfig;
@MinerConfig(group = "Varys", dataId = "default")
public interface VarysConfig {
String address();
@MinerConfig(defaultValue = "0")
long callTimeout();
@MinerConfig(defaultValue = "10000")
long connectTimeout();
@MinerConfig(defaultValue = "10000")
long readTimeout();
@MinerConfig(defaultValue = "10000")
long writeTimeout();
}