We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Currently, the example Java project contains an example that returns a streaming response, but only returns a single item:
@Test void unary_request_streaming_response() { mockGreetingService.stubFor( method("oneGreetingManyReplies") .willReturn(message(HelloResponse.newBuilder().setGreeting("Hi Tom")))); assertThat(greetingsClient.oneGreetingManyReplies("Tom"), hasItem("Hi Tom")); }
Could we add a way to be able to return a stream of responses, i.e. multiple HelloResponse instances?
HelloResponse
No response
The text was updated successfully, but these errors were encountered:
No branches or pull requests
Proposal
Currently, the example Java project contains an example that returns a streaming response, but only returns a single item:
Could we add a way to be able to return a stream of responses, i.e. multiple
HelloResponse
instances?References
No response
The text was updated successfully, but these errors were encountered: