12 lines
247 B
Java
12 lines
247 B
Java
|
package io.grpc;
|
||
|
|
||
|
import java.io.IOException;
|
||
|
import java.io.OutputStream;
|
||
|
|
||
|
/* loaded from: classes6.dex */
|
||
|
public interface Compressor {
|
||
|
OutputStream compress(OutputStream outputStream) throws IOException;
|
||
|
|
||
|
String getMessageEncoding();
|
||
|
}
|