Please add support for optional gzip compression on both request payloads (send) and response payloads (receive) in the Java API, similar to what is already available in the Python and C++ clients.
example
InferArguments inferArg = new InferArguments(model_name, inputs, outputs);
inferArg.setRequestCompressionAlgorithm("gzip");
inferArg.setResponseCompressionAlgorithm("gzip");
InferResult result = client.infer(inferArg);