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.setPemTrustOptions(PemTrustOptions options) |
Modifier and Type | Method and Description |
---|---|
HttpServerOptions |
HttpServerOptions.setPemTrustOptions(PemTrustOptions options) |
HttpClientOptions |
HttpClientOptions.setPemTrustOptions(PemTrustOptions options) |
Modifier and Type | Method and Description |
---|---|
PemTrustOptions |
PemTrustOptions.addCertPath(String certPath)
Add a certificate path
|
PemTrustOptions |
PemTrustOptions.addCertValue(Buffer certValue)
Add a certificate value
|
PemTrustOptions |
PemTrustOptions.clone() |
PemTrustOptions |
TCPSSLOptions.getPemTrustOptions()
Get the trust options in pem format
|
PemTrustOptions |
SelfSignedCertificate.trustOptions()
Provides the
TrustOptions X.509 certificate file in PEM format corresponding to the SelfSignedCertificate.certificatePath() |
Modifier and Type | Method and Description |
---|---|
static void |
PemTrustOptionsConverter.fromJson(JsonObject json,
PemTrustOptions obj) |
NetClientOptions |
NetClientOptions.setPemTrustOptions(PemTrustOptions options) |
TCPSSLOptions |
TCPSSLOptions.setPemTrustOptions(PemTrustOptions options)
Set the trust options in pem format
|
NetServerOptions |
NetServerOptions.setPemTrustOptions(PemTrustOptions options) |
ClientOptionsBase |
ClientOptionsBase.setPemTrustOptions(PemTrustOptions options) |
static void |
PemTrustOptionsConverter.toJson(PemTrustOptions obj,
JsonObject json) |
Constructor and Description |
---|
PemTrustOptions(PemTrustOptions other)
Copy constructor
|
Copyright © 2018. All rights reserved.