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

com.fireflysource.net.http.client.HttpClientFactory Maven / Gradle / Ivy

There is a newer version: 5.0.2
Show newest version
package com.fireflysource.net.http.client;

import com.fireflysource.net.http.client.impl.AsyncHttpClient;
import com.fireflysource.net.http.common.HttpConfig;

abstract public class HttpClientFactory {

    public static HttpClient create(HttpConfig config) {
        return new AsyncHttpClient(config);
    }

    public static HttpClient create() {
        return new AsyncHttpClient();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy