Uses of Class
com.soklet.RequestDecompressionPolicy
Packages that use RequestDecompressionPolicy
-
Uses of RequestDecompressionPolicy in com.soklet
Methods in com.soklet that return RequestDecompressionPolicyModifier and TypeMethodDescriptionRequestDecompressionPolicy.Builder.build()Builds an enabledRequestDecompressionPolicy.RequestDecompressionPolicy.disabledInstance()Acquires a policy that disables request decompression (the default): request bodies are passed to handlers exactly as received.RequestDecompressionPolicy.fromDefaults()Acquires a policy that enables gzip request decompression with default limits: the decompressed body is capped by the server'smaximumRequestSizeInBytesand a100:1compression ratio.Methods in com.soklet with parameters of type RequestDecompressionPolicyModifier and TypeMethodDescriptionHttpServer.Builder.requestDecompressionPolicy(@Nullable RequestDecompressionPolicy requestDecompressionPolicy) Sets the policy used by the standard HTTP server to decide whether and how gzip-compressed request bodies are transparently decompressed before request handling.