Skip to content

Commit f017775

Browse files
committed
Set next snapshot version
1 parent f4082f0 commit f017775

File tree

6 files changed

+26
-4
lines changed

6 files changed

+26
-4
lines changed

pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@
1111
<artifactId>vertx-lang-kotlin-parent</artifactId>
1212
<name>Vert.x for Kotlin parent</name>
1313

14-
<version>4.5.25</version>
14+
<version>4.5.26-SNAPSHOT</version>
1515
<packaging>pom</packaging>
1616

1717
<scm>

vertx-lang-kotlin-coroutines/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
<parent>
88
<artifactId>vertx-lang-kotlin-parent</artifactId>
99
<groupId>io.vertx</groupId>
10-
<version>4.5.25</version>
10+
<version>4.5.26-SNAPSHOT</version>
1111
</parent>
1212

1313
<properties>

vertx-lang-kotlin-gen/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<artifactId>vertx-lang-kotlin-parent</artifactId>
1010
<groupId>io.vertx</groupId>
11-
<version>4.5.25</version>
11+
<version>4.5.26-SNAPSHOT</version>
1212
</parent>
1313

1414
<artifactId>vertx-lang-kotlin-gen</artifactId>

vertx-lang-kotlin/pom.xml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -8,7 +8,7 @@
88
<parent>
99
<artifactId>vertx-lang-kotlin-parent</artifactId>
1010
<groupId>io.vertx</groupId>
11-
<version>4.5.25</version>
11+
<version>4.5.26-SNAPSHOT</version>
1212
</parent>
1313

1414
<artifactId>vertx-lang-kotlin</artifactId>

vertx-lang-kotlin/src/main/kotlin/io/vertx/kotlin/core/file/FileSystemOptions.kt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ import io.vertx.core.file.FileSystemOptions
2525
*
2626
* @param classPathResolvingEnabled When vert.x cannot find the file on the filesystem it tries to resolve the file from the class path when this is set to <code>true</code>.
2727
* @param fileCacheDir When vert.x reads a file that is packaged with the application it gets extracted to this directory first and subsequent reads will use the extracted file to get better IO performance.
28+
* @param fileCacheDirAsExactPath Set to <code>true</code> to use the configured file cache dir as an exact path. When <code>false</code> (the default), a unique subdirectory is created under the file cache dir. When <code>true</code> and the directory already exists, a suffix like "-2", "-3", etc. is appended to guarantee uniqueness.
2829
* @param fileCachingEnabled Set to <code>true</code> to cache files on the real file system when the filesystem performs class path resolving.
2930
*
3031
* <p/>
@@ -33,6 +34,7 @@ import io.vertx.core.file.FileSystemOptions
3334
fun fileSystemOptionsOf(
3435
classPathResolvingEnabled: Boolean? = null,
3536
fileCacheDir: String? = null,
37+
fileCacheDirAsExactPath: Boolean? = null,
3638
fileCachingEnabled: Boolean? = null): FileSystemOptions = io.vertx.core.file.FileSystemOptions().apply {
3739

3840
if (classPathResolvingEnabled != null) {
@@ -41,6 +43,9 @@ fun fileSystemOptionsOf(
4143
if (fileCacheDir != null) {
4244
this.setFileCacheDir(fileCacheDir)
4345
}
46+
if (fileCacheDirAsExactPath != null) {
47+
this.setFileCacheDirAsExactPath(fileCacheDirAsExactPath)
48+
}
4449
if (fileCachingEnabled != null) {
4550
this.setFileCachingEnabled(fileCachingEnabled)
4651
}

vertx-lang-kotlin/src/main/kotlin/io/vertx/kotlin/oracleclient/OracleConnectOptions.kt

Lines changed: 17 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -25,6 +25,7 @@ import io.vertx.core.net.PemTrustOptions
2525
import io.vertx.core.net.PfxOptions
2626
import io.vertx.core.net.ProxyOptions
2727
import io.vertx.core.tracing.TracingPolicy
28+
import io.vertx.oracleclient.FetchDirection
2829
import io.vertx.oracleclient.ServerMode
2930
import java.util.concurrent.TimeUnit
3031

@@ -38,6 +39,8 @@ fun oracleConnectOptionsOf(
3839
database: String? = null,
3940
enabledCipherSuites: Iterable<String>? = null,
4041
enabledSecureTransportProtocols: Iterable<String>? = null,
42+
fetchDirection: FetchDirection? = null,
43+
fetchSize: Int? = null,
4144
host: String? = null,
4245
hostnameVerificationAlgorithm: String? = null,
4346
idleTimeout: Int? = null,
@@ -48,6 +51,7 @@ fun oracleConnectOptionsOf(
4851
keyStoreOptions: io.vertx.core.net.JksOptions? = null,
4952
localAddress: String? = null,
5053
logActivity: Boolean? = null,
54+
maxRows: Int? = null,
5155
metricsName: String? = null,
5256
nonProxyHosts: Iterable<String>? = null,
5357
openSslEngineOptions: io.vertx.core.net.OpenSSLEngineOptions? = null,
@@ -61,6 +65,7 @@ fun oracleConnectOptionsOf(
6165
preparedStatementCacheSqlLimit: Int? = null,
6266
properties: Map<String, String>? = null,
6367
proxyOptions: io.vertx.core.net.ProxyOptions? = null,
68+
queryTimeout: Int? = null,
6469
readIdleTimeout: Int? = null,
6570
receiveBufferSize: Int? = null,
6671
reconnectAttempts: Int? = null,
@@ -130,6 +135,12 @@ fun oracleConnectOptionsOf(
130135
if (enabledSecureTransportProtocols != null) {
131136
this.setEnabledSecureTransportProtocols(enabledSecureTransportProtocols.toSet())
132137
}
138+
if (fetchDirection != null) {
139+
this.setFetchDirection(fetchDirection)
140+
}
141+
if (fetchSize != null) {
142+
this.setFetchSize(fetchSize)
143+
}
133144
if (host != null) {
134145
this.setHost(host)
135146
}
@@ -160,6 +171,9 @@ fun oracleConnectOptionsOf(
160171
if (logActivity != null) {
161172
this.setLogActivity(logActivity)
162173
}
174+
if (maxRows != null) {
175+
this.setMaxRows(maxRows)
176+
}
163177
if (metricsName != null) {
164178
this.setMetricsName(metricsName)
165179
}
@@ -199,6 +213,9 @@ fun oracleConnectOptionsOf(
199213
if (proxyOptions != null) {
200214
this.setProxyOptions(proxyOptions)
201215
}
216+
if (queryTimeout != null) {
217+
this.setQueryTimeout(queryTimeout)
218+
}
202219
if (readIdleTimeout != null) {
203220
this.setReadIdleTimeout(readIdleTimeout)
204221
}

0 commit comments

Comments
 (0)