com.github.gekomad.scalacompress

Type members

Classlikes

case class CompressionStats(method: String, fileIn: List[String], fileOut: String, sizeIn: Long, sizeOut: Long, compressionRatio: Float, millSeconds: Long, mbPerSecond: Float)
Value Params
compressionRatio

Uncompress file size/compress file size

fileIn

Files and folders to compress

fileOut

Compressed file

mbPerSecond

Compression speed in MB per second

method

Compression method

millSeconds

Time to compress

sizeIn

Total fileIn size

sizeOut

Total fileOut size

Companion
object
Companion
class
object Compressors

Compressors

Compressors

Authors

Giuseppe Cannella

Since

0.0.1

case class DecompressionStats(method: String, fileIn: String, fileOut: List[String], sizeIn: Long, sizeOut: Long, compressionRatio: Float, millSeconds: Long, mbPerSecond: Float)
Value Params
compressionRatio

Uncompress file size/compress file size

fileIn

Compressed file

fileOut

Decompressed files and folders

mbPerSecond

Decompression speed in MB per second

method

Compression method

millSeconds

Time to decompress

sizeIn

Total fileIn size

sizeOut

Total fileOut size

Companion
object
Companion
class
object Util