golang can register a custom compressor like this ``` *grpc.UseCompressor(gzip.Name)* ```
In C++ there is just support of several compression algorithms: ``` *ChannelArguments args; // Set the default compression algorithm for the channel. * *// gzip deflate ...* *args.SetCompressionAlgorithm(GRPC_COMPRESS_GZIP); GreeterClient greeter(grpc::CreateCustomChannel( "localhost:50051", grpc::InsecureChannelCredentials(), args));* ``` How to add a customize *"compressor"* like golang? -- You received this message because you are subscribed to the Google Groups "grpc.io" group. To unsubscribe from this group and stop receiving emails from it, send an email to [email protected]. To view this discussion on the web visit https://groups.google.com/d/msgid/grpc-io/3eda9d13-fd96-4af6-a8ee-232057b3a2can%40googlegroups.com.
