Uses of Interface
org.webbitserver.WebServer

Packages that use WebServer
org.webbitserver   
org.webbitserver.netty   
 

Uses of WebServer in org.webbitserver
 

Methods in org.webbitserver that return WebServer
 WebServer WebServer.add(HttpHandler handler)
          Add an HttpHandler.
 WebServer WebServer.add(String path, EventSourceHandler handler)
          Add a WebSocketHandler for dealing with WebSockets.
 WebServer WebServer.add(String path, HttpHandler handler)
          Add an HttpHandler that will only respond to a certain path (e.g "/some/page").
 WebServer WebServer.add(String path, WebSocketHandler handler)
          Add a WebSocketHandler for dealing with WebSockets.
static WebServer WebServers.createWebServer(Executor executor, int port)
          Returns a new WebServer object, which runs on the provided port and adds the executor to the List of executor services to be called when the server is running.
static WebServer WebServers.createWebServer(Executor executor, SocketAddress socketAddress, URI publicUri)
          Returns a new WebServer object, adding the executor to the list of executor services, running on the stated socket address and accessible from the provided public URI.
static WebServer WebServers.createWebServer(int port)
          Returns a new WebServer object, which runs on the provided port.
 WebServer WebServer.setupSsl(InputStream keyStore, String storePass, String keyPass)
          Setup SSL/TLS handler
 WebServer WebServer.staleConnectionTimeout(long millis)
          Number of milliseconds before a stale HTTP keep-alive connection is closed by the server.
 

Uses of WebServer in org.webbitserver.netty
 

Classes in org.webbitserver.netty that implement WebServer
 class NettyWebServer
           
 

Methods in org.webbitserver.netty that return types with arguments of type WebServer
 Future<WebServer> NettyWebServer.stop()
           
 



Copyright © 2013. All Rights Reserved.