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

com.fireflysource.net.http.server.HttpServerFactory Maven / Gradle / Ivy

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

import com.fireflysource.net.http.common.HttpConfig;
import com.fireflysource.net.http.server.impl.AsyncHttpServer;

abstract public class HttpServerFactory {

    public static HttpServer create(HttpConfig config) {
        return new AsyncHttpServer(config);
    }

    public static HttpServer create() {
        return new AsyncHttpServer();
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy