| Package | Description |
|---|---|
| io.vertx.core.eventbus |
== The Event Bus
:toc: left
The
event bus is the *nervous system* of Vert.x. |
| 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 | Method and Description |
|---|---|
EventBusOptions |
EventBusOptions.setPemKeyCertOptions(PemKeyCertOptions options) |
| Modifier and Type | Method and Description |
|---|---|
HttpServerOptions |
HttpServerOptions.setPemKeyCertOptions(PemKeyCertOptions options) |
HttpClientOptions |
HttpClientOptions.setPemKeyCertOptions(PemKeyCertOptions options) |
| Modifier and Type | Method and Description |
|---|---|
PemKeyCertOptions |
PemKeyCertOptions.clone() |
PemKeyCertOptions |
PemKeyCertOptions.setCertPath(String certPath)
Set the path to the certificate
|
PemKeyCertOptions |
PemKeyCertOptions.setCertValue(Buffer certValue)
Set the certificate as a buffer
|
PemKeyCertOptions |
PemKeyCertOptions.setKeyPath(String keyPath)
Set the path to the key file
|
PemKeyCertOptions |
PemKeyCertOptions.setKeyValue(Buffer keyValue)
Set the key a a buffer
|
| Modifier and Type | Method and Description |
|---|---|
static void |
PemKeyCertOptionsConverter.fromJson(JsonObject json,
PemKeyCertOptions obj) |
TCPSSLOptions |
TCPSSLOptions.setPemKeyCertOptions(PemKeyCertOptions options)
Set the key/cert store options in pem format.
|
NetServerOptions |
NetServerOptions.setPemKeyCertOptions(PemKeyCertOptions options) |
NetClientOptions |
NetClientOptions.setPemKeyCertOptions(PemKeyCertOptions options) |
static void |
PemKeyCertOptionsConverter.toJson(PemKeyCertOptions obj,
JsonObject json) |
| Constructor and Description |
|---|
PemKeyCertOptions(PemKeyCertOptions other)
Copy constructor
|
Copyright © 2017. All rights reserved.