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
There is a method, which returns stream response of Blog:
public java.util.Iterator<com.proto.blog.ListBlogResponse> listBlog( com.proto.blog.ListBlogRequest request) { return blockingServerStreamingCall( getChannel(), getListBlogMethod(), getCallOptions(), request); }
To print each blog one be one:
blogClient.listBlog(ListBlogRequest.newBuilder().build()).forEachRemaining( listBlogResponse -> System.out.println(listBlogResponse.getBlog().toString()) );
But if it's needed on client to wait until getting all blogs and having it as com.proto.blog.ListBlogResponse, what's the best option to do?
com.proto.blog.ListBlogResponse
@simplesteph , could you please help
The text was updated successfully, but these errors were encountered:
No branches or pull requests
There is a method, which returns stream response of Blog:
To print each blog one be one:
But if it's needed on client to wait until getting all blogs and having it as
com.proto.blog.ListBlogResponse
, what's the best option to do?@simplesteph , could you please help
The text was updated successfully, but these errors were encountered: