This issue was originally filed by @zoechi
see also
Comments are closed.
Copyright © 2021 Fantas...hit
Necessary cookies are absolutely essential for the website to function properly. These cookies ensure basic functionalities and security features of the website, anonymously.
Cookie | Duration | Description |
---|---|---|
cookielawinfo-checbox-analytics | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Analytics". |
cookielawinfo-checbox-functional | 11 months | The cookie is set by GDPR cookie consent to record the user consent for the cookies in the category "Functional". |
cookielawinfo-checbox-others | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Other. |
cookielawinfo-checkbox-necessary | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookies is used to store the user consent for the cookies in the category "Necessary". |
cookielawinfo-checkbox-performance | 11 months | This cookie is set by GDPR Cookie Consent plugin. The cookie is used to store the user consent for the cookies in the category "Performance". |
viewed_cookie_policy | 11 months | The cookie is set by the GDPR Cookie Consent plugin and is used to store whether or not user has consented to the use of cookies. It does not store any personal data. |
Functional cookies help to perform certain functionalities like sharing the content of the website on social media platforms, collect feedbacks, and other third-party features.
Performance cookies are used to understand and analyze the key performance indexes of the website which helps in delivering a better user experience for the visitors.
Analytical cookies are used to understand how visitors interact with the website. These cookies help provide information on metrics the number of visitors, bounce rate, traffic source, etc.
Advertisement cookies are used to provide visitors with relevant ads and marketing campaigns. These cookies track visitors across websites and collect information to provide customized ads.
Other uncategorized cookies are those that are being analyzed and have not been classified into a category as yet.
Hi
Any status on the gRPC implementation ? I can see that HTTP/2 support was implemented in #21504.
Thanks,
Teodor
To give an update on this: The Dart team will be actively working on a gRPC implementation for Dart during the coming months, most likely starting early Q1.
I’ll be working on this starting in Q2. We have an implementation by @mkustermann in dart-lang/appengine that I plan to use as the basis for the generic implementation.
Shouldn’t be long now. I have a basic implementation of the client and server runtime in review, which should be posted soon. No guarantees about correctness or interoperability yet, but once that’s landed it’ll be easier to iterate.
First PR has been merged into https://github.com/dart-lang/grpc-dart. Don’t expect to be able to use what’s there out of the box just yet, though.
The current state is that basic gRPC call functionality works, but “advanced” features like custom metadata, deadlines, and cancellation do not, and I have only done extremely basic interoperability tests against the Go implementation.
Oh, and there’s no protoc plugin to generate the gRPC stubs yet.
I plan to file issues for the things I’m working on, so you should be able to follow along on GitHub.
I really should remember to update this thread more often, but tl;dr: Dart gRPC v0.1.0 is on pub.
See README.md for the route_guide example for instructions on how to generate stubs from protobuf definitions (you’ll need the latest version of protoc_plugin).
It’s still early days, but the core gRPC implementation Works For Me(tm). When you find issues, please file them!
Stuff that’s still being worked on is things like easy authentication to Cloud, etc. Right now, you have to manually add authentication headers, but if you get things right, it does work (For Me, at least).