proto
Here are 70 public repositories matching this topic...
-
Updated
Dec 28, 2019 - JavaScript
We should expose something akin to warp::service that allows the Router type to turn into a Service implementation so that it can be combined with more custom implementations.
I have a function that is a normal request with streaming response, and these are my questions/confusions:
Should I be calling GRPC.Stub.recv on the stream multiple times? It feels like I should.
The documentation mentions the end_stream function, then it says this:
The stream will be in half_closed state after this is called.
So presumably there is a way to get the stream
If you use gogoproto's custom types (https://github.com/gogo/protobuf/blob/master/custom_types.md) e.g.:
import "myorg/customtypes/time/time.proto";
...
message Example {
time.CustomTime created = 3 [(gogoproto.customtype) = "myorg/customtypes/time.CustomTime"];
}
mwitkow validators generates a file with unused imports:
19:33:28 generated/xxxx.pb.go:17:2: importe
-
Updated
May 10, 2020 - Java
-
Updated
Apr 13, 2020 - Go
At the moment this plugin generates two files for each processed *.proto file with names:
<protofile>_transformer.gooptions.go
In this case it's hard to say were these files auto-generated or weren't by its names.
Use additional file extension for auto-generated files: *.pb.st.go, as a result files should be named as :
<protofile>.pb.st.gooptions.pb.st.go
-
Updated
May 28, 2019 - Go
-
Updated
Jul 31, 2018 - Go
-
Updated
Mar 23, 2020
-
Updated
Sep 20, 2019
-
Updated
May 2, 2020 - Java
-
Updated
Jul 10, 2017
-
Updated
Mar 14, 2020 - TypeScript
-
Updated
May 11, 2018 - PHP
-
Updated
Nov 17, 2019 - JavaScript
-
Updated
May 20, 2020 - Java
-
Updated
May 15, 2020 - C++
Improve this page
Add a description, image, and links to the proto topic page so that developers can more easily learn about it.
Add this topic to your repo
To associate your repository with the proto topic, visit your repo's landing page and select "manage topics."
Hello,
I found recently that grpc-go was working on an xds implementation for service discovery, which is great.
Using current HEAD, I tried to get both resolver and balancer working. I managed to get something more or less working for resolver by reversing code & tests code on Gist but as for balancer, I didn't.
I unders