All Downloads are FREE. Search and download functionalities are using the official Maven repository.

io.quarkus.vertx.http.runtime.HttpCompression Maven / Gradle / Ivy

The newest version!
package io.quarkus.vertx.http.runtime;

import io.quarkus.vertx.http.Compressed;
import io.quarkus.vertx.http.Uncompressed;

public enum HttpCompression {
    /**
     * Compression is explicitly enabled.
     *
     * @see Compressed
     */
    ON,
    /**
     * Compression is explicitly disabled.
     *
     * @see Uncompressed
     */
    OFF,
    /**
     * Compression will be enabled if the response has the {@code Content-Type} header set and the value is listed in
     * {@link HttpConfiguration#compressMediaTypes}.
     */
    UNDEFINED
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy