| Package | Description |
|---|---|
| io.vertx.core.http |
== Writing HTTP servers and clients
Vert.x allows you to easily write non blocking HTTP clients and servers.
|
| io.vertx.core.net |
== Writing TCP servers and clients
Vert.x allows you to easily write non blocking TCP clients and servers.
|
| Modifier and Type | Class and Description |
|---|---|
class |
HttpClientOptions
Options describing how an
HttpClient will make connections. |
| Modifier and Type | Class and Description |
|---|---|
class |
NetClientOptions
Options for configuring a
NetClient. |
| Modifier and Type | Method and Description |
|---|---|
ClientOptionsBase |
ClientOptionsBase.setConnectTimeout(int connectTimeout)
Set the connect timeout
|
ClientOptionsBase |
ClientOptionsBase.setLocalAddress(String localAddress)
Set the local interface to bind for network connections.
|
ClientOptionsBase |
ClientOptionsBase.setLogActivity(boolean logEnabled) |
ClientOptionsBase |
ClientOptionsBase.setMetricsName(String metricsName)
Set the metrics name identifying the reported metrics, useful for grouping metrics
with the same name.
|
ClientOptionsBase |
ClientOptionsBase.setProxyOptions(ProxyOptions proxyOptions)
Set proxy options for connections via CONNECT proxy (e.g.
|
ClientOptionsBase |
ClientOptionsBase.setTrustAll(boolean trustAll)
Set whether all server certificates should be trusted
|
| Modifier and Type | Method and Description |
|---|---|
static void |
ClientOptionsBaseConverter.fromJson(JsonObject json,
ClientOptionsBase obj) |
static void |
ClientOptionsBaseConverter.toJson(ClientOptionsBase obj,
JsonObject json) |
| Constructor and Description |
|---|
ClientOptionsBase(ClientOptionsBase other)
Copy constructor
|
Copyright © 2017. All rights reserved.