Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/vert-x3/vertx-grpc
gRPC for Vert.x
https://github.com/vert-x3/vertx-grpc
grpc http2 java reactive vertx
Last synced: 5 days ago
JSON representation
gRPC for Vert.x
- Host: GitHub
- URL: https://github.com/vert-x3/vertx-grpc
- Owner: vert-x3
- Created: 2017-02-14T15:11:52.000Z (almost 8 years ago)
- Default Branch: master
- Last Pushed: 2024-12-11T08:12:02.000Z (23 days ago)
- Last Synced: 2024-12-21T21:02:30.816Z (12 days ago)
- Topics: grpc, http2, java, reactive, vertx
- Language: Java
- Size: 943 KB
- Stars: 78
- Watchers: 25
- Forks: 50
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
[![Build Status (5.x)](https://github.com/vert-x3/vertx-grpc/actions/workflows/ci-5.x.yml/badge.svg)](https://github.com/vert-x3/vertx-grpc/actions/workflows/ci-5.x.yml)
[![Build Status (4.x)](https://github.com/vert-x3/vertx-grpc/actions/workflows/ci-4.x.yml/badge.svg)](https://github.com/vert-x3/vertx-grpc/actions/workflows/ci-4.x.yml)# Vert.x gRPC Netty
This component is deprecated, instead you should use https://github.com/eclipse-vertx/vertx-grpc
- client and server
- server scaling
- ssl configuration with options
- auto close in Verticle## Plugin installation
To use vertx-grpc-protoc-plugin with the protobuf-maven-plugin, add a [custom protoc plugin configuration section](https://www.xolstice.org/protobuf-maven-plugin/examples/protoc-plugin.html).
```
vertx-grpc-protoc-plugin
io.vertx
vertx-grpc-protoc-plugin
[VERSION]
io.vertx.grpc.protoc.plugin.VertxGrpcGenerator
```
And add the [vertx-grpc](https://github.com/vert-x3/vertx-grpc) dependency:
```
io.vertx
vertx-grpc
[VERSION]```