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

org.webpieces.frontend.api.HttpFrontendManager Maven / Gradle / Ivy

Go to download

Create a webserver with this library in just 3 lines of code. just register your HttpRequestListener and it feeds you a FrontendSocket that you write HttpResponses to

There is a newer version: 1.9.71
Show newest version
package org.webpieces.frontend.api;

import org.webpieces.httpcommon.api.RequestListener;
import org.webpieces.nio.api.SSLEngineFactory;

public interface HttpFrontendManager {

	HttpServer createHttpServer(FrontendConfig config, RequestListener listener);
	
	HttpServer createHttpsServer(FrontendConfig config, RequestListener listener, SSLEngineFactory factory);

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy