Package | Description |
---|---|
io.vertx.mssqlclient |
Modifier and Type | Method and Description |
---|---|
MSSQLConnectOptions |
MSSQLConnectOptions.addCrlPath(String crlPath) |
MSSQLConnectOptions |
MSSQLConnectOptions.addCrlValue(io.vertx.core.buffer.Buffer crlValue) |
MSSQLConnectOptions |
MSSQLConnectOptions.addEnabledCipherSuite(String suite) |
MSSQLConnectOptions |
MSSQLConnectOptions.addEnabledSecureTransportProtocol(String protocol) |
MSSQLConnectOptions |
MSSQLConnectOptions.addProperty(String key,
String value) |
static MSSQLConnectOptions |
MSSQLConnectOptions.fromUri(String connectionUri)
Provide a
MSSQLConnectOptions configured from a connection URI. |
MSSQLConnectOptions |
MSSQLConnectOptions.removeEnabledSecureTransportProtocol(String protocol) |
MSSQLConnectOptions |
MSSQLConnectOptions.setConnectTimeout(int connectTimeout) |
MSSQLConnectOptions |
MSSQLConnectOptions.setDatabase(String database) |
MSSQLConnectOptions |
MSSQLConnectOptions.setEnabledSecureTransportProtocols(Set<String> enabledSecureTransportProtocols) |
MSSQLConnectOptions |
MSSQLConnectOptions.setHost(String host) |
MSSQLConnectOptions |
MSSQLConnectOptions.setHostnameVerificationAlgorithm(String hostnameVerificationAlgorithm) |
MSSQLConnectOptions |
MSSQLConnectOptions.setIdleTimeout(int idleTimeout) |
MSSQLConnectOptions |
MSSQLConnectOptions.setIdleTimeoutUnit(TimeUnit idleTimeoutUnit) |
MSSQLConnectOptions |
MSSQLConnectOptions.setJdkSslEngineOptions(io.vertx.core.net.JdkSSLEngineOptions sslEngineOptions) |
MSSQLConnectOptions |
MSSQLConnectOptions.setKeyCertOptions(io.vertx.core.net.KeyCertOptions options) |
MSSQLConnectOptions |
MSSQLConnectOptions.setKeyStoreOptions(io.vertx.core.net.JksOptions options) |
MSSQLConnectOptions |
MSSQLConnectOptions.setLocalAddress(String localAddress) |
MSSQLConnectOptions |
MSSQLConnectOptions.setLogActivity(boolean logEnabled) |
MSSQLConnectOptions |
MSSQLConnectOptions.setMetricsName(String metricsName) |
MSSQLConnectOptions |
MSSQLConnectOptions.setNonProxyHosts(List<String> nonProxyHosts) |
MSSQLConnectOptions |
MSSQLConnectOptions.setOpenSslEngineOptions(io.vertx.core.net.OpenSSLEngineOptions sslEngineOptions) |
MSSQLConnectOptions |
MSSQLConnectOptions.setPacketSize(int packetSize)
Set the desired size (in bytes) for TDS packets.
|
MSSQLConnectOptions |
MSSQLConnectOptions.setPassword(String password) |
MSSQLConnectOptions |
MSSQLConnectOptions.setPemKeyCertOptions(io.vertx.core.net.PemKeyCertOptions options) |
MSSQLConnectOptions |
MSSQLConnectOptions.setPemTrustOptions(io.vertx.core.net.PemTrustOptions options) |
MSSQLConnectOptions |
MSSQLConnectOptions.setPfxKeyCertOptions(io.vertx.core.net.PfxOptions options) |
MSSQLConnectOptions |
MSSQLConnectOptions.setPfxTrustOptions(io.vertx.core.net.PfxOptions options) |
MSSQLConnectOptions |
MSSQLConnectOptions.setPort(int port) |
MSSQLConnectOptions |
MSSQLConnectOptions.setProperties(Map<String,String> properties) |
MSSQLConnectOptions |
MSSQLConnectOptions.setProxyOptions(io.vertx.core.net.ProxyOptions proxyOptions) |
MSSQLConnectOptions |
MSSQLConnectOptions.setReceiveBufferSize(int receiveBufferSize) |
MSSQLConnectOptions |
MSSQLConnectOptions.setReconnectAttempts(int attempts) |
MSSQLConnectOptions |
MSSQLConnectOptions.setReconnectInterval(long interval) |
MSSQLConnectOptions |
MSSQLConnectOptions.setReuseAddress(boolean reuseAddress) |
MSSQLConnectOptions |
MSSQLConnectOptions.setReusePort(boolean reusePort) |
MSSQLConnectOptions |
MSSQLConnectOptions.setSendBufferSize(int sendBufferSize) |
MSSQLConnectOptions |
MSSQLConnectOptions.setSoLinger(int soLinger) |
MSSQLConnectOptions |
MSSQLConnectOptions.setSsl(boolean ssl) |
MSSQLConnectOptions |
MSSQLConnectOptions.setSslEngineOptions(io.vertx.core.net.SSLEngineOptions sslEngineOptions) |
MSSQLConnectOptions |
MSSQLConnectOptions.setSslHandshakeTimeout(long sslHandshakeTimeout) |
MSSQLConnectOptions |
MSSQLConnectOptions.setSslHandshakeTimeoutUnit(TimeUnit sslHandshakeTimeoutUnit) |
MSSQLConnectOptions |
MSSQLConnectOptions.setTcpCork(boolean tcpCork) |
MSSQLConnectOptions |
MSSQLConnectOptions.setTcpFastOpen(boolean tcpFastOpen) |
MSSQLConnectOptions |
MSSQLConnectOptions.setTcpKeepAlive(boolean tcpKeepAlive) |
MSSQLConnectOptions |
MSSQLConnectOptions.setTcpNoDelay(boolean tcpNoDelay) |
MSSQLConnectOptions |
MSSQLConnectOptions.setTcpQuickAck(boolean tcpQuickAck) |
MSSQLConnectOptions |
MSSQLConnectOptions.setTracingPolicy(io.vertx.core.tracing.TracingPolicy tracingPolicy) |
MSSQLConnectOptions |
MSSQLConnectOptions.setTrafficClass(int trafficClass) |
MSSQLConnectOptions |
MSSQLConnectOptions.setTrustAll(boolean trustAll) |
MSSQLConnectOptions |
MSSQLConnectOptions.setTrustOptions(io.vertx.core.net.TrustOptions options) |
MSSQLConnectOptions |
MSSQLConnectOptions.setTrustStoreOptions(io.vertx.core.net.JksOptions options) |
MSSQLConnectOptions |
MSSQLConnectOptions.setUseAlpn(boolean useAlpn) |
MSSQLConnectOptions |
MSSQLConnectOptions.setUser(String user) |
static MSSQLConnectOptions |
MSSQLConnectOptions.wrap(SqlConnectOptions options) |
Modifier and Type | Method and Description |
---|---|
static io.vertx.core.Future<MSSQLConnection> |
MSSQLConnection.connect(io.vertx.core.Vertx vertx,
MSSQLConnectOptions connectOptions)
Like
MSSQLConnection.connect(Vertx, MSSQLConnectOptions, Handler) but returns a Future of the asynchronous result |
static void |
MSSQLConnection.connect(io.vertx.core.Vertx vertx,
MSSQLConnectOptions connectOptions,
io.vertx.core.Handler<io.vertx.core.AsyncResult<MSSQLConnection>> handler)
Create a connection to SQL Server with the given
connectOptions . |
static void |
MSSQLConnectOptionsConverter.fromJson(Iterable<Map.Entry<String,Object>> json,
MSSQLConnectOptions obj) |
static MSSQLPool |
MSSQLPool.pool(MSSQLConnectOptions database,
PoolOptions options)
Create a connection pool to the SQL server
database configured with the given options . |
static MSSQLPool |
MSSQLPool.pool(io.vertx.core.Vertx vertx,
MSSQLConnectOptions database,
PoolOptions options)
Like
MSSQLPool.pool(MSSQLConnectOptions, PoolOptions) with a specific Vertx instance. |
static void |
MSSQLConnectOptionsConverter.toJson(MSSQLConnectOptions obj,
io.vertx.core.json.JsonObject json) |
static void |
MSSQLConnectOptionsConverter.toJson(MSSQLConnectOptions obj,
Map<String,Object> json) |
Modifier and Type | Method and Description |
---|---|
static MSSQLPool |
MSSQLPool.pool(List<MSSQLConnectOptions> databases,
PoolOptions options)
Create a connection pool to the SQL Server
databases with round-robin selection. |
static MSSQLPool |
MSSQLPool.pool(io.vertx.core.Vertx vertx,
List<MSSQLConnectOptions> databases,
PoolOptions options)
Like
MSSQLPool.pool(List, PoolOptions) with a specific Vertx instance. |
Constructor and Description |
---|
MSSQLConnectOptions(MSSQLConnectOptions other) |
Copyright © 2021 Eclipse. All rights reserved.