-
Notifications
You must be signed in to change notification settings - Fork 241
Add gRPC
blockquote
#1229
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 gRPC
blockquote
#1229
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
How about explicitly naming GrpcExperimentalBlockquote
to keep the context of what this blockquote is about? WDYT?
import Blockquote from 'components/shared/blockquote'; | ||
import React from 'react'; | ||
|
||
const GrpcBlockquote = () => ( |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
const GrpcBlockquote = () => ( | |
const GrpcExperimentalBlockquote = () => ( |
</Blockquote> | ||
); | ||
|
||
export default GrpcBlockquote; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
export default GrpcBlockquote; | |
export default GrpcExperimentalBlockquote; |
import GrpcBlockquote from './grpc-blockquote.view'; | ||
|
||
export default GrpcBlockquote; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import GrpcBlockquote from './grpc-blockquote.view'; | |
export default GrpcBlockquote; | |
import GrpcExperimentalBlockquote from './grpc-blockquote.view'; | |
export default GrpcExperimentalBlockquote; |
import CryptoBlockquote from 'components/shared/crypto-blockquote'; | ||
import DescriptionList from 'components/shared/description-list'; | ||
import ExperimentalBlockquote from 'components/shared/experimental-blockquote'; | ||
import GrpcBlockquote from 'components/shared/grpc-blockquote'; |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
import GrpcBlockquote from 'components/shared/grpc-blockquote'; | |
import GrpcExperimentalBlockquote from 'components/shared/grpc-blockquote'; |
BlockingAwsBlockquote, | ||
CryptoBlockquote, | ||
WsBlockquote, | ||
GrpcBlockquote, |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
GrpcBlockquote, | |
GrpcExperimentalBlockquote, |
--- | ||
|
||
The `k6/net/grpc` module, added in k6 v0.29.0, provides a [gRPC](https://grpc.io/) client for Remote Procedure Calls (RPC) over HTTP/2. | ||
<GrpcBlockquote /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<GrpcBlockquote /> | |
<GrpcExperimentalBlockquote /> |
`Client` is a gRPC client that can interact with a gRPC server. | ||
|
||
> ⚠️ **Note**: Only unary RPCs are currently supported, i.e. there is no support for client, server or bidirectional streaming. | ||
<GrpcBlockquote /> |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
<GrpcBlockquote /> | |
<GrpcExperimentalBlockquote /> |
There's a version of the docs published here: https://mdr-ci.staging.k6.io/docs/refs/pull/1229/merge It will be deleted automatically in 30 days. |
There are other similar cases: But not sure because atm, I'll leave it as it is. But let me know if you have a strong opinion about it. |
No description provided.