-
Notifications
You must be signed in to change notification settings - Fork 23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Add support for keep-alive-time parameter #74
Comments
which keep alive are we talking about ? HTTP/2 ? it is not clear |
In the NettyChannelBuilder, you have the
Basically the time between pings. Do we have the equivalent method in the pure Vert.x variant? |
assuming HTTP/2 ping ? |
Yes, Http/2 pings. |
It seems that it periodically sends a ping HTTP/2 frame to the server to "keep alive" the stream. We could develop a similar feature for the new client on top of Vert.x HTTP/2 connection ping feature. |
Is this still planned to be worked on? |
it is actually not defined what this means, if that is defined then we can tell whether or not it will be planned |
I would expect, that a FYI: There is also an open issue in the quarkus project quarkusio/quarkus#36033 Please let us know what is still undefined. |
The Netty variant of the gRPC server allows configuring the keep-alive-time. However, the Vert.x variant does not.
Related to: quarkusio/quarkus#36033
The text was updated successfully, but these errors were encountered: