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

org.zalando.riptide.compression.Compression Maven / Gradle / Ivy

There is a newer version: 4.1.0
Show newest version
package org.zalando.riptide.compression;

import lombok.AllArgsConstructor;
import lombok.Getter;
import org.apiguardian.api.API;
import org.zalando.fauxpas.ThrowingUnaryOperator;

import java.io.IOException;
import java.io.OutputStream;

import static org.apiguardian.api.API.Status.EXPERIMENTAL;

@API(status = EXPERIMENTAL)
@AllArgsConstructor(staticName = "of")
@Getter
public final class Compression {
    private final String contentEncoding;
    private final ThrowingUnaryOperator outputStreamDecorator;
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy