Revision abfcd08903516c52d77bc40333a8950c270293d6 authored by Sam Kleinman on 18 February 2022, 23:29:57 UTC, committed by GitHub on 18 February 2022, 23:29:57 UTC
While I'd hoped to be able to make the socket client less weird, I
think that this is a nice middle ground in terms of improving
readability and removing the vestigal components without breaking
anything or radically changing the underlying assumptions. 

In the future we'd want to have requests be identified by a request
ID, and then we could drop the request tracking logic in the client
entirely, and this is protocol breaking. The alternatives aren't
substantively different than the current implementation.
1 parent 7f8f1cd
Raw File
buf.gen.yaml
# The version of the generation template (required).
# The only currently-valid value is v1beta1.
version: v1beta1

# The plugins to run.
plugins:
  # The name of the plugin.
  - name: gogofaster
    # The directory where the generated proto output will be written.
    # The directory is relative to where the generation tool was run.
    out: proto
    # Set options to assign import paths to the well-known types
    # and to enable service generation.
    opt: Mgoogle/protobuf/timestamp.proto=github.com/gogo/protobuf/types,Mgoogle/protobuf/duration.proto=github.com/golang/protobuf/ptypes/duration,plugins=grpc,paths=source_relative
back to top