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

org.javawebstack.httpserver.adapter.IHTTPSocketServer Maven / Gradle / Ivy

Go to download

This library provides a routing and request mapping stack on top of the well known and industry proven eclipse jetty http server. It also supports websockets.

The newest version!
package org.javawebstack.httpserver.adapter;

import java.io.IOException;

public interface IHTTPSocketServer {

    void setPort(int port);
    int getPort();
    void setMaxThreads(int maxThreads);
    void start() throws IOException;
    void stop();
    void join();
    void setHandler(IHTTPSocketHandler handler);
    boolean isWebSocketSupported();

}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy