Uses of Interface
io.grpc.Decompressor
Packages that use Decompressor
Package
Description
The gRPC core public API.
The in-process transport which is for when a server is in the same process as the client.
Interfaces and implementations that are internal to gRPC.
-
Uses of Decompressor in io.grpc
Subinterfaces of Decompressor in io.grpcModifier and TypeInterfaceDescriptioninterfaceEncloses classes related to the compression and decompression of messages.Classes in io.grpc that implement DecompressorModifier and TypeClassDescriptionstatic final classA gzip compressor and decompressor.static final classThe "identity", or "none" codec.Fields in io.grpc declared as DecompressorModifier and TypeFieldDescription(package private) final DecompressorDecompressorRegistry.DecompressorInfo.decompressorMethods in io.grpc that return DecompressorModifier and TypeMethodDescriptionDecompressorRegistry.lookupDecompressor(String messageEncoding) Returns a decompressor for the given message encoding, ornullif none has been registered.Methods in io.grpc with parameters of type DecompressorModifier and TypeMethodDescriptionDecompressorRegistry.with(Decompressor d, boolean advertised) Registers a decompressor for both decompression and message encoding negotiation.Constructors in io.grpc with parameters of type DecompressorModifierConstructorDescription(package private)DecompressorInfo(Decompressor decompressor, boolean advertised) privateDecompressorRegistry(Decompressor d, boolean advertised, DecompressorRegistry parent) -
Uses of Decompressor in io.grpc.inprocess
Methods in io.grpc.inprocess with parameters of type DecompressorModifier and TypeMethodDescriptionvoidInProcessTransport.InProcessStream.InProcessServerStream.setDecompressor(Decompressor decompressor) -
Uses of Decompressor in io.grpc.internal
Fields in io.grpc.internal declared as DecompressorMethods in io.grpc.internal with parameters of type DecompressorModifier and TypeMethodDescriptionfinal voidAbstractServerStream.setDecompressor(Decompressor decompressor) protected final voidAbstractStream.TransportState.setDecompressor(Decompressor decompressor) voidApplicationThreadDeframer.setDecompressor(Decompressor decompressor) voidDeframer.setDecompressor(Decompressor decompressor) Sets the decompressor available to use.voidMessageDeframer.setDecompressor(Decompressor decompressor) voidMigratingThreadDeframer.setDecompressor(Decompressor decompressor) voidServerStream.setDecompressor(Decompressor decompressor) Sets the decompressor on the deframer.Constructors in io.grpc.internal with parameters of type DecompressorModifierConstructorDescriptionMessageDeframer(MessageDeframer.Listener listener, Decompressor decompressor, int maxMessageSize, StatsTraceContext statsTraceCtx, TransportTracer transportTracer) Create a deframer.