Skip to content

Commit

Permalink
Add info Vert.x gRPC plugin
Browse files Browse the repository at this point in the history
  • Loading branch information
vietj committed Jun 22, 2023
1 parent 8e28487 commit 4e00298
Showing 1 changed file with 11 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -12,6 +12,17 @@ We are extremely pleased to announce that Eclipse Vert.x version 4.4.4 has been

Since the release of Vert.x 4.4.4, quite a few bugs have been reported. We would like to thank you all for reporting these issues.

The [Vert.x gRPC plugin](https://vertx.io/docs/vertx-grpc/java/#_vert_x_grpc_protoc_plugin) generating Vert.x idiomatic classes has also been ported to the new gRPC implementation.

```java
VertxGreeterGrpcServer.GreeterApi stub = new VertxGreeterGrpcServer.GreeterApi() {
@Override
public Future<HelloReply> sayHello(HelloRequest request) {
return Future.succeededFuture(HelloReply.newBuilder().setMessage("Hello " + request.getName()).build());
}
};
```

The [4.4.4 release notes](https://github.com/vert-x3/wiki/wiki/4.4.4-Release-Notes) can be found on the wiki.

You can bootstrap a Vert.x 4 project using [start.vertx.io](https://start.vertx.io).
Expand Down

0 comments on commit 4e00298

Please sign in to comment.