| |
|
| com.noelios.restlet.http.HttpServerHelper com.noelios.restlet.ext.jetty.JettyServerHelper com.noelios.restlet.ext.jetty.HttpServerHelper
HttpServerHelper | public class HttpServerHelper extends JettyServerHelper (Code) | | Jetty HTTP server connector. Here is the list of additional parameters that
are supported:
Parameter name |
Value type |
Default value |
Description |
type |
int |
1 |
The type of Jetty connector to use. 1 : Selecting NIO connector
(Jetty's SelectChannelConnector class). 2 : Blocking NIO connector
(Jetty's BlockingChannelConnector class). 3 : Blocking BIO connector
(Jetty's SocketConnector class). |
See Also: Jetty home page author: Jerome Louvel (contact@noelios.com) |
Method Summary | |
protected AbstractConnector | createConnector() Creates a new internal Jetty connector. | public int | getType() Returns the type of Jetty connector to use. |
HttpServerHelper | public HttpServerHelper(Server server)(Code) | | Constructor.
Parameters: server - The server to help. |
createConnector | protected AbstractConnector createConnector()(Code) | | Creates a new internal Jetty connector.
A new internal Jetty connector. |
getType | public int getType()(Code) | | Returns the type of Jetty connector to use.
The type of Jetty connector to use. |
|
|
|