Example usage for org.apache.http.impl.bootstrap ServerBootstrap setSocketConfig

List of usage examples for org.apache.http.impl.bootstrap ServerBootstrap setSocketConfig

Introduction

In this page you can find the example usage for org.apache.http.impl.bootstrap ServerBootstrap setSocketConfig.

Prototype

public final ServerBootstrap setSocketConfig(final SocketConfig socketConfig) 

Source Link

Document

Sets socket configuration.

Usage

From source file:com.adobe.ags.curly.test.TestWebServer.java

private TestWebServer(int port) throws IOException, InterruptedException {
    this.port = port;
    ServerBootstrap bootstrap = ServerBootstrap.bootstrap();
    bootstrap.setListenerPort(port);//from w  w  w.j  a v  a2  s .c o  m
    bootstrap.setServerInfo("Test/1.1");
    bootstrap.setSocketConfig(SocketConfig.DEFAULT);
    bootstrap.registerHandler("*", this::handleHttpRequest);
    server = bootstrap.create();
    server.start();
}