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

com.avast.gzip.GzipCompressor.scala Maven / Gradle / Ivy

Go to download

Bytecompressor abstraction for Zlib compression algorithm from standard Java package java.util.zip.

The newest version!
/*
 *  Copyright 2013 Lukas Karas, Avast a.s. 
 *
 *  Licensed under the Apache License, Version 2.0 (the "License");
 *  you may not use this file except in compliance with the License.
 *  You may obtain a copy of the License at
 *
 *      http://www.apache.org/licenses/LICENSE-2.0
 *
 *  Unless required by applicable law or agreed to in writing, software
 *  distributed under the License is distributed on an "AS IS" BASIS,
 *  WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 *  See the License for the specific language governing permissions and
 *  limitations under the License.
 */

package com.avast.gzip

import java.util.zip._
import com.avast.Compressor
import java.io.{InputStream, OutputStream}

/**
 *
 */
object GzipCompressor extends Compressor{

  override def decompressionInputStream(delegate: InputStream): InputStream = new GZIPInputStream(delegate)

  override def compressionOutputStream(delegate: OutputStream): OutputStream = new GZIPOutputStream(delegate)
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy