-
Notifications
You must be signed in to change notification settings - Fork 51
New issue
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
feat: add interface abstraction primitives #577
Merged
software-dov
merged 32 commits into
googleapis:master
from
software-dov:pimpl-interface
Apr 26, 2021
Merged
Changes from 27 commits
Commits
Show all changes
32 commits
Select commit
Hold shift + click to select a range
5d2ae4c
feat: add interface abstraction primitives
software-dov bcddb28
Fix errors, lint failures and remove duplicated code
software-dov fcfc073
Lint fix
software-dov 07ae859
Name changes
software-dov bc2d75d
Remove changes to go.mod
software-dov c94aba6
Finish gutting existing client
software-dov 1f6d86c
Update internal/gengapic/client_init.go
software-dov fe6505e
Integrate reviews
software-dov 043c34e
Merge branch 'pimpl-interface' of https://github.com/software-dov/gap…
software-dov 0fad7d6
fixup! Merge branch 'pimpl-interface' of https://github.com/software-…
software-dov f4b92cd
Fixes
software-dov 628173e
s/[A,a]bstractClient/internalClient/g
software-dov 6c67c3d
Comment cleanup
software-dov e2fcc6a
Fix
software-dov fe8750e
Pass through for internal client
software-dov c23a4a9
s/GrpcClientOptions/GRPCClientOptions/
software-dov 07637f1
Correct the double pointer bug
software-dov 24621c0
Integrate reviews
software-dov cd8be14
Fixes
software-dov c6f57bb
Fix golden tests
software-dov f897ea5
Final fix
software-dov 2743692
Fix
software-dov 122c73c
Last time, for real, really
software-dov dedce17
Churn
software-dov 06ef835
setGoogleClientInfo
software-dov 80fef7e
Churn
software-dov c02df12
Add Operation helper methods to interface
software-dov 4104bed
Mixin methods
software-dov 0e72a64
Tests
software-dov 150c1ae
Integrate reviews
software-dov 8215ad9
Comma comma comma comma comma chameleon!
software-dov 3c7dec8
Merge branch 'master' into pimpl-interface
software-dov File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
Large diffs are not rendered by default.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Nit: can we colocate methods with the type they belong to for ease of readability? Consider either moving the type def for
transport
down here or adding a new filetransport.go
(and a corresponding test file).