-
Notifications
You must be signed in to change notification settings - Fork 63
#8: Codec support #31
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
Conversation
...ain/java/org/springframework/grpc/autoconfigure/client/GrpcChannelFactoryConfigurations.java
Show resolved
Hide resolved
...ain/java/org/springframework/grpc/autoconfigure/common/codec/GrpcCodecAutoConfiguration.java
Outdated
Show resolved
Hide resolved
|
If you could squash your changes into one commit that would also be helpful. |
Also, a small description for the PR would be most welcomed. |
onobc
left a comment
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.
Thanks @andreilisa for this contribution. Nice work! It may look like I added a bunch of comments/suggestions but they are mostly of the nit variety.
...ain/java/org/springframework/grpc/autoconfigure/client/GrpcChannelFactoryConfigurations.java
Show resolved
Hide resolved
...src/main/java/org/springframework/grpc/autoconfigure/client/GrpcClientAutoConfiguration.java
Outdated
Show resolved
Hide resolved
...ain/java/org/springframework/grpc/autoconfigure/common/codec/GrpcCodecAutoConfiguration.java
Outdated
Show resolved
Hide resolved
...ain/java/org/springframework/grpc/autoconfigure/common/codec/GrpcCodecAutoConfiguration.java
Outdated
Show resolved
Hide resolved
...ain/java/org/springframework/grpc/autoconfigure/common/codec/GrpcCodecAutoConfiguration.java
Outdated
Show resolved
Hide resolved
...ain/java/org/springframework/grpc/autoconfigure/common/codec/GrpcCodecAutoConfiguration.java
Outdated
Show resolved
Hide resolved
...ain/java/org/springframework/grpc/autoconfigure/common/codec/GrpcCodecAutoConfiguration.java
Outdated
Show resolved
Hide resolved
...ain/java/org/springframework/grpc/autoconfigure/common/codec/GrpcCodecAutoConfiguration.java
Outdated
Show resolved
Hide resolved
a2a8fbf to
786951e
Compare
...rc/main/java/org/springframework/grpc/autoconfigure/common/codec/GrpcCodecConfiguration.java
Outdated
Show resolved
Hide resolved
...rc/main/java/org/springframework/grpc/autoconfigure/common/codec/GrpcCodecConfiguration.java
Outdated
Show resolved
Hide resolved
...rc/main/java/org/springframework/grpc/autoconfigure/common/codec/GrpcCodecConfiguration.java
Outdated
Show resolved
Hide resolved
.../src/test/java/org/springframework/grpc/autoconfigure/common/GrpcCodecConfigurationTest.java
Show resolved
Hide resolved
.../src/test/java/org/springframework/grpc/autoconfigure/common/GrpcCodecConfigurationTest.java
Outdated
Show resolved
Hide resolved
.../src/test/java/org/springframework/grpc/autoconfigure/common/GrpcCodecConfigurationTest.java
Outdated
Show resolved
Hide resolved
onobc
left a comment
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.
Thanks for the quick updates @andreilisa . We are almost there. A few minor comments/suggestions.
dsyer
left a comment
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.
Nearly there. Just the nitpicks from Chris as far as I can tell. Plus you might need to rebase and force push (and then you could squash at the same time) to make it a clean merge.
|
If there aren't any TinyNits let me know and I will do the squash |
|
LGTM. Please rebase and squash. |
9bcfb85 to
2fe2ee3
Compare
57c8327 to
b60bbc3
Compare
|
@dsyer, It looks better now |
|
Nice work @andreilisa ! |
This PR adds support for gRPC compression and decompression codecs by auto-configuring CompressorRegistry and DecompressorRegistry beans. It registers available Compressor and Decompressor instances with the corresponding registries.