org.zalando.riptide.compression.Compression Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of riptide-compression Show documentation
Show all versions of riptide-compression Show documentation
Client side response routing with stream support
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