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.setPfxKeyCertOptions(PfxOptions options) |
EventBusOptions |
EventBusOptions.setPfxTrustOptions(PfxOptions options) |
Modifier and Type | Method and Description |
---|---|
HttpServerOptions |
HttpServerOptions.setPfxKeyCertOptions(PfxOptions options) |
HttpClientOptions |
HttpClientOptions.setPfxKeyCertOptions(PfxOptions options) |
HttpServerOptions |
HttpServerOptions.setPfxTrustOptions(PfxOptions options) |
HttpClientOptions |
HttpClientOptions.setPfxTrustOptions(PfxOptions options) |
Modifier and Type | Method and Description |
---|---|
PfxOptions |
PfxOptions.clone() |
PfxOptions |
TCPSSLOptions.getPfxKeyCertOptions()
Get the key/cert options in pfx format.
|
PfxOptions |
TCPSSLOptions.getPfxTrustOptions()
Get the trust options in pfx format
|
PfxOptions |
PfxOptions.setPassword(String password)
Set the password
|
PfxOptions |
PfxOptions.setPath(String path)
Set the path
|
PfxOptions |
PfxOptions.setValue(Buffer value)
Set the store as a buffer
|
Modifier and Type | Method and Description |
---|---|
static void |
PfxOptionsConverter.fromJson(JsonObject json,
PfxOptions obj) |
ClientOptionsBase |
ClientOptionsBase.setPfxKeyCertOptions(PfxOptions options) |
NetClientOptions |
NetClientOptions.setPfxKeyCertOptions(PfxOptions options) |
TCPSSLOptions |
TCPSSLOptions.setPfxKeyCertOptions(PfxOptions options)
Set the key/cert options in pfx format.
|
NetServerOptions |
NetServerOptions.setPfxKeyCertOptions(PfxOptions options) |
ClientOptionsBase |
ClientOptionsBase.setPfxTrustOptions(PfxOptions options) |
NetClientOptions |
NetClientOptions.setPfxTrustOptions(PfxOptions options) |
TCPSSLOptions |
TCPSSLOptions.setPfxTrustOptions(PfxOptions options)
Set the trust options in pfx format
|
NetServerOptions |
NetServerOptions.setPfxTrustOptions(PfxOptions options) |
static void |
PfxOptionsConverter.toJson(PfxOptions obj,
JsonObject json) |
Constructor and Description |
---|
PfxOptions(PfxOptions other)
Copy constructor
|
Copyright © 2017. All rights reserved.