Updating dependency google.golang.org/grpc to version v1.26.0

This commit is contained in:
Davanum Srinivas
2020-01-13 17:38:18 -05:00
parent 9c78f05d06
commit 3b29bcf52d
112 changed files with 2865 additions and 1609 deletions

View File

@@ -46,6 +46,10 @@ type Compressor interface {
// coding header. The result must be static; the result cannot change
// between calls.
Name() string
// EXPERIMENTAL: if a Compressor implements
// DecompressedSize(compressedBytes []byte) int, gRPC will call it
// to determine the size of the buffer allocated for the result of decompression.
// Return -1 to indicate unknown size.
}
var registeredCompressor = make(map[string]Compressor)