![JAR search and dependency download from the Maven repository](/logo.png)
io.joshworks.restclient.http.utils.ClientStats Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of unirest-java Show documentation
Show all versions of unirest-java Show documentation
Rest Java client based on Unirest
package io.joshworks.restclient.http.utils;
import org.apache.http.pool.PoolStats;
/**
* Created by Josh Gontijo on 3/21/18.
*/
public class ClientStats {
public final PoolStats sync;
public final PoolStats async;
public ClientStats(PoolStats sync, PoolStats async) {
this.sync = sync;
this.async = async;
}
@Override
public String toString() {
return "ClientStats {" +
"SYNC=" + sync +
", ASYNC=" + async +
'}';
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy