Skip to content

Commit

Permalink
Set version to 4.5.8-SNAPSHOT
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Mar 27, 2024
1 parent d28f04c commit dbfad70
Show file tree
Hide file tree
Showing 11 changed files with 98 additions and 98 deletions.
4 changes: 2 additions & 2 deletions pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@

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

<version>4.5.7</version>
<version>4.5.8-SNAPSHOT</version>
<packaging>pom</packaging>

<modules>
Expand All @@ -24,7 +24,7 @@
<kotlin.coroutines.version>1.6.4</kotlin.coroutines.version>
<kotlin.version>1.7.21</kotlin.version>
<junit.version>4.13.2</junit.version>
<stack.version>4.5.7</stack.version>
<stack.version>4.5.8-SNAPSHOT</stack.version>
</properties>

<dependencyManagement>
Expand Down
2 changes: 1 addition & 1 deletion vertx-lang-kotlin-coroutines/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@
<parent>
<artifactId>vertx-lang-kotlin-parent</artifactId>
<groupId>io.vertx</groupId>
<version>4.5.7</version>
<version>4.5.8-SNAPSHOT</version>
</parent>

<properties>
Expand Down
2 changes: 1 addition & 1 deletion vertx-lang-kotlin-gen/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<artifactId>vertx-lang-kotlin-parent</artifactId>
<groupId>io.vertx</groupId>
<version>4.5.7</version>
<version>4.5.8-SNAPSHOT</version>
</parent>

<artifactId>vertx-lang-kotlin-gen</artifactId>
Expand Down
2 changes: 1 addition & 1 deletion vertx-lang-kotlin/pom.xml
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@
<parent>
<artifactId>vertx-lang-kotlin-parent</artifactId>
<groupId>io.vertx</groupId>
<version>4.5.7</version>
<version>4.5.8-SNAPSHOT</version>
</parent>

<artifactId>vertx-lang-kotlin</artifactId>
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,6 @@ import io.vertx.core.file.AsyncFileLock
import io.vertx.core.streams.WriteStream
import io.vertx.kotlin.coroutines.awaitResult

/**
* Suspending version of method [io.vertx.core.file.AsyncFile.pipeTo]
*
* @param dst the destination write stream
*
* NOTE: This function has been automatically generated from [io.vertx.core.file.AsyncFile] using Vert.x codegen.
*/
@Deprecated(message = "Instead use pipeTo returning a future and chain with await()", replaceWith = ReplaceWith("pipeTo(dst).await()"))
suspend fun AsyncFile.pipeToAwait(dst: WriteStream<Buffer>): Unit {
return awaitResult {
this.pipeTo(dst, io.vertx.core.Handler { ar -> it.handle(ar.mapEmpty()) })
}
}

/**
* Suspending version of method [io.vertx.core.file.AsyncFile.write]
*
Expand Down Expand Up @@ -76,6 +62,20 @@ suspend fun AsyncFile.endAwait(data: Buffer): Unit {
}
}

/**
* Suspending version of method [io.vertx.core.file.AsyncFile.pipeTo]
*
* @param dst the destination write stream
*
* NOTE: This function has been automatically generated from [io.vertx.core.file.AsyncFile] using Vert.x codegen.
*/
@Deprecated(message = "Instead use pipeTo returning a future and chain with await()", replaceWith = ReplaceWith("pipeTo(dst).await()"))
suspend fun AsyncFile.pipeToAwait(dst: WriteStream<Buffer>): Unit {
return awaitResult {
this.pipeTo(dst, io.vertx.core.Handler { ar -> it.handle(ar.mapEmpty()) })
}
}

/**
* Suspending version of method [io.vertx.core.file.AsyncFile.close]
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -23,20 +23,6 @@ import io.vertx.core.http.WebSocketFrame
import io.vertx.core.streams.WriteStream
import io.vertx.kotlin.coroutines.awaitResult

/**
* Suspending version of method [io.vertx.core.http.ClientWebSocket.pipeTo]
*
* @param dst the destination write stream
*
* NOTE: This function has been automatically generated from [io.vertx.core.http.ClientWebSocket] using Vert.x codegen.
*/
@Deprecated(message = "Instead use pipeTo returning a future and chain with await()", replaceWith = ReplaceWith("pipeTo(dst).await()"))
suspend fun ClientWebSocket.pipeToAwait(dst: WriteStream<Buffer>): Unit {
return awaitResult {
this.pipeTo(dst, io.vertx.core.Handler { ar -> it.handle(ar.mapEmpty()) })
}
}

/**
* Suspending version of method [io.vertx.core.http.ClientWebSocket.write]
*
Expand Down Expand Up @@ -65,6 +51,20 @@ suspend fun ClientWebSocket.endAwait(data: Buffer): Unit {
}
}

/**
* Suspending version of method [io.vertx.core.http.ClientWebSocket.pipeTo]
*
* @param dst the destination write stream
*
* NOTE: This function has been automatically generated from [io.vertx.core.http.ClientWebSocket] using Vert.x codegen.
*/
@Deprecated(message = "Instead use pipeTo returning a future and chain with await()", replaceWith = ReplaceWith("pipeTo(dst).await()"))
suspend fun ClientWebSocket.pipeToAwait(dst: WriteStream<Buffer>): Unit {
return awaitResult {
this.pipeTo(dst, io.vertx.core.Handler { ar -> it.handle(ar.mapEmpty()) })
}
}

/**
* Suspending version of method [io.vertx.core.http.ClientWebSocket.end]
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,20 +22,6 @@ import io.vertx.core.http.WebSocketFrame
import io.vertx.core.streams.WriteStream
import io.vertx.kotlin.coroutines.awaitResult

/**
* Suspending version of method [io.vertx.core.http.ServerWebSocket.pipeTo]
*
* @param dst the destination write stream
*
* NOTE: This function has been automatically generated from [io.vertx.core.http.ServerWebSocket] using Vert.x codegen.
*/
@Deprecated(message = "Instead use pipeTo returning a future and chain with await()", replaceWith = ReplaceWith("pipeTo(dst).await()"))
suspend fun ServerWebSocket.pipeToAwait(dst: WriteStream<Buffer>): Unit {
return awaitResult {
this.pipeTo(dst, io.vertx.core.Handler { ar -> it.handle(ar.mapEmpty()) })
}
}

/**
* Suspending version of method [io.vertx.core.http.ServerWebSocket.write]
*
Expand Down Expand Up @@ -64,6 +50,20 @@ suspend fun ServerWebSocket.endAwait(data: Buffer): Unit {
}
}

/**
* Suspending version of method [io.vertx.core.http.ServerWebSocket.pipeTo]
*
* @param dst the destination write stream
*
* NOTE: This function has been automatically generated from [io.vertx.core.http.ServerWebSocket] using Vert.x codegen.
*/
@Deprecated(message = "Instead use pipeTo returning a future and chain with await()", replaceWith = ReplaceWith("pipeTo(dst).await()"))
suspend fun ServerWebSocket.pipeToAwait(dst: WriteStream<Buffer>): Unit {
return awaitResult {
this.pipeTo(dst, io.vertx.core.Handler { ar -> it.handle(ar.mapEmpty()) })
}
}

/**
* Suspending version of method [io.vertx.core.http.ServerWebSocket.end]
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,6 @@ import io.vertx.core.http.WebSocketFrame
import io.vertx.core.streams.WriteStream
import io.vertx.kotlin.coroutines.awaitResult

/**
* Suspending version of method [io.vertx.core.http.WebSocket.pipeTo]
*
* @param dst the destination write stream
*
* NOTE: This function has been automatically generated from [io.vertx.core.http.WebSocket] using Vert.x codegen.
*/
@Deprecated(message = "Instead use pipeTo returning a future and chain with await()", replaceWith = ReplaceWith("pipeTo(dst).await()"))
suspend fun WebSocket.pipeToAwait(dst: WriteStream<Buffer>): Unit {
return awaitResult {
this.pipeTo(dst, io.vertx.core.Handler { ar -> it.handle(ar.mapEmpty()) })
}
}

/**
* Suspending version of method [io.vertx.core.http.WebSocket.write]
*
Expand Down Expand Up @@ -63,6 +49,20 @@ suspend fun WebSocket.endAwait(data: Buffer): Unit {
}
}

/**
* Suspending version of method [io.vertx.core.http.WebSocket.pipeTo]
*
* @param dst the destination write stream
*
* NOTE: This function has been automatically generated from [io.vertx.core.http.WebSocket] using Vert.x codegen.
*/
@Deprecated(message = "Instead use pipeTo returning a future and chain with await()", replaceWith = ReplaceWith("pipeTo(dst).await()"))
suspend fun WebSocket.pipeToAwait(dst: WriteStream<Buffer>): Unit {
return awaitResult {
this.pipeTo(dst, io.vertx.core.Handler { ar -> it.handle(ar.mapEmpty()) })
}
}

/**
* Suspending version of method [io.vertx.core.http.WebSocket.end]
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,20 +21,6 @@ import io.vertx.core.http.WebSocketFrame
import io.vertx.core.streams.WriteStream
import io.vertx.kotlin.coroutines.awaitResult

/**
* Suspending version of method [io.vertx.core.http.WebSocketBase.pipeTo]
*
* @param dst the destination write stream
*
* NOTE: This function has been automatically generated from [io.vertx.core.http.WebSocketBase] using Vert.x codegen.
*/
@Deprecated(message = "Instead use pipeTo returning a future and chain with await()", replaceWith = ReplaceWith("pipeTo(dst).await()"))
suspend fun WebSocketBase.pipeToAwait(dst: WriteStream<Buffer>): Unit {
return awaitResult {
this.pipeTo(dst, io.vertx.core.Handler { ar -> it.handle(ar.mapEmpty()) })
}
}

/**
* Suspending version of method [io.vertx.core.http.WebSocketBase.write]
*
Expand Down Expand Up @@ -63,6 +49,20 @@ suspend fun WebSocketBase.endAwait(data: Buffer): Unit {
}
}

/**
* Suspending version of method [io.vertx.core.http.WebSocketBase.pipeTo]
*
* @param dst the destination write stream
*
* NOTE: This function has been automatically generated from [io.vertx.core.http.WebSocketBase] using Vert.x codegen.
*/
@Deprecated(message = "Instead use pipeTo returning a future and chain with await()", replaceWith = ReplaceWith("pipeTo(dst).await()"))
suspend fun WebSocketBase.pipeToAwait(dst: WriteStream<Buffer>): Unit {
return awaitResult {
this.pipeTo(dst, io.vertx.core.Handler { ar -> it.handle(ar.mapEmpty()) })
}
}

/**
* Suspending version of method [io.vertx.core.http.WebSocketBase.writeFrame]
*
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,30 +21,30 @@ import io.vertx.core.streams.WriteStream
import io.vertx.kotlin.coroutines.awaitResult

/**
* Suspending version of method [io.vertx.core.net.NetSocket.pipeTo]
* Suspending version of method [io.vertx.core.net.NetSocket.end]
*
* @param dst the destination write stream
* @param data
*
* NOTE: This function has been automatically generated from [io.vertx.core.net.NetSocket] using Vert.x codegen.
*/
@Deprecated(message = "Instead use pipeTo returning a future and chain with await()", replaceWith = ReplaceWith("pipeTo(dst).await()"))
suspend fun NetSocket.pipeToAwait(dst: WriteStream<Buffer>): Unit {
@Deprecated(message = "Instead use end returning a future and chain with await()", replaceWith = ReplaceWith("end(data).await()"))
suspend fun NetSocket.endAwait(data: Buffer): Unit {
return awaitResult {
this.pipeTo(dst, io.vertx.core.Handler { ar -> it.handle(ar.mapEmpty()) })
this.end(data, io.vertx.core.Handler { ar -> it.handle(ar.mapEmpty()) })
}
}

/**
* Suspending version of method [io.vertx.core.net.NetSocket.end]
* Suspending version of method [io.vertx.core.net.NetSocket.pipeTo]
*
* @param data
* @param dst the destination write stream
*
* NOTE: This function has been automatically generated from [io.vertx.core.net.NetSocket] using Vert.x codegen.
*/
@Deprecated(message = "Instead use end returning a future and chain with await()", replaceWith = ReplaceWith("end(data).await()"))
suspend fun NetSocket.endAwait(data: Buffer): Unit {
@Deprecated(message = "Instead use pipeTo returning a future and chain with await()", replaceWith = ReplaceWith("pipeTo(dst).await()"))
suspend fun NetSocket.pipeToAwait(dst: WriteStream<Buffer>): Unit {
return awaitResult {
this.end(data, io.vertx.core.Handler { ar -> it.handle(ar.mapEmpty()) })
this.pipeTo(dst, io.vertx.core.Handler { ar -> it.handle(ar.mapEmpty()) })
}
}

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -21,43 +21,43 @@ import io.vertx.ext.web.handler.sockjs.SockJSSocket
import io.vertx.kotlin.coroutines.awaitResult

/**
* Suspending version of method [io.vertx.ext.web.handler.sockjs.SockJSSocket.pipeTo]
* Suspending version of method [io.vertx.ext.web.handler.sockjs.SockJSSocket.end]
*
* @param dst the destination write stream
*
* NOTE: This function has been automatically generated from [io.vertx.ext.web.handler.sockjs.SockJSSocket] using Vert.x codegen.
*/
@Deprecated(message = "Instead use pipeTo returning a future and chain with await()", replaceWith = ReplaceWith("pipeTo(dst).await()"))
suspend fun SockJSSocket.pipeToAwait(dst: WriteStream<Buffer>): Unit {
@Deprecated(message = "Instead use end returning a future and chain with await()", replaceWith = ReplaceWith("end().await()"))
suspend fun SockJSSocket.endAwait(): Unit {
return awaitResult {
this.pipeTo(dst, io.vertx.core.Handler { ar -> it.handle(ar.mapEmpty()) })
this.end(io.vertx.core.Handler { ar -> it.handle(ar.mapEmpty()) })
}
}

/**
* Suspending version of method [io.vertx.ext.web.handler.sockjs.SockJSSocket.end]
*
* @param data
*
* NOTE: This function has been automatically generated from [io.vertx.ext.web.handler.sockjs.SockJSSocket] using Vert.x codegen.
*/
@Deprecated(message = "Instead use end returning a future and chain with await()", replaceWith = ReplaceWith("end().await()"))
suspend fun SockJSSocket.endAwait(): Unit {
@Deprecated(message = "Instead use end returning a future and chain with await()", replaceWith = ReplaceWith("end(data).await()"))
suspend fun SockJSSocket.endAwait(data: Buffer): Unit {
return awaitResult {
this.end(io.vertx.core.Handler { ar -> it.handle(ar.mapEmpty()) })
this.end(data, io.vertx.core.Handler { ar -> it.handle(ar.mapEmpty()) })
}
}

/**
* Suspending version of method [io.vertx.ext.web.handler.sockjs.SockJSSocket.end]
* Suspending version of method [io.vertx.ext.web.handler.sockjs.SockJSSocket.pipeTo]
*
* @param data
* @param dst the destination write stream
*
* NOTE: This function has been automatically generated from [io.vertx.ext.web.handler.sockjs.SockJSSocket] using Vert.x codegen.
*/
@Deprecated(message = "Instead use end returning a future and chain with await()", replaceWith = ReplaceWith("end(data).await()"))
suspend fun SockJSSocket.endAwait(data: Buffer): Unit {
@Deprecated(message = "Instead use pipeTo returning a future and chain with await()", replaceWith = ReplaceWith("pipeTo(dst).await()"))
suspend fun SockJSSocket.pipeToAwait(dst: WriteStream<Buffer>): Unit {
return awaitResult {
this.end(data, io.vertx.core.Handler { ar -> it.handle(ar.mapEmpty()) })
this.pipeTo(dst, io.vertx.core.Handler { ar -> it.handle(ar.mapEmpty()) })
}
}

Expand Down

0 comments on commit dbfad70

Please sign in to comment.