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

io.joshworks.restclient.http.utils.ClientStats Maven / Gradle / Ivy

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 - 2024 Weber Informatics LLC | Privacy Policy