Example usage for io.vertx.core.net TCPSSLOptions DEFAULT_IDLE_TIMEOUT

List of usage examples for io.vertx.core.net TCPSSLOptions DEFAULT_IDLE_TIMEOUT

Introduction

In this page you can find the example usage for io.vertx.core.net TCPSSLOptions DEFAULT_IDLE_TIMEOUT.

Prototype

int DEFAULT_IDLE_TIMEOUT

To view the source code for io.vertx.core.net TCPSSLOptions DEFAULT_IDLE_TIMEOUT.

Click Source Link

Document

Default idle timeout = 0

Usage

From source file:org.apache.servicecomb.transport.rest.client.TransportClientConfig.java

License:Apache License

public static int getHttp2ConnectionIdleTimeoutInSeconds() {
    return DynamicPropertyFactory.getInstance().getIntProperty(
            "servicecomb.rest.client.http2.idleTimeoutInSeconds", TCPSSLOptions.DEFAULT_IDLE_TIMEOUT).get();
}