Uses of Interface
io.grpc.Decompressor
Packages that use Decompressor
Package
Description
The gRPC core public API.
Interfaces and implementations that are internal to gRPC.
-
Uses of Decompressor in io.grpc
Subinterfaces of Decompressor in io.grpcModifier and TypeInterfaceDescriptioninterface
Encloses classes related to the compression and decompression of messages.Classes in io.grpc that implement DecompressorModifier and TypeClassDescriptionstatic final class
A gzip compressor and decompressor.static final class
The "identity", or "none" codec.Methods in io.grpc that return DecompressorModifier and TypeMethodDescriptionDecompressorRegistry.lookupDecompressor
(String messageEncoding) Returns a decompressor for the given message encoding, ornull
if 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. -
Uses of Decompressor in io.grpc.internal
Methods in io.grpc.internal with parameters of type DecompressorModifier and TypeMethodDescriptionfinal void
AbstractServerStream.setDecompressor
(Decompressor decompressor) protected final void
AbstractStream.TransportState.setDecompressor
(Decompressor decompressor) void
ApplicationThreadDeframer.setDecompressor
(Decompressor decompressor) void
Deframer.setDecompressor
(Decompressor decompressor) Sets the decompressor available to use.void
MessageDeframer.setDecompressor
(Decompressor decompressor) void
ServerStream.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.