GunzipResult

final case class GunzipResult[F <: ([_$22] =>> Any)](content: Stream[F, Byte], modificationTime: Option[Instant], fileName: Option[String], comment: Option[String])
Gunzip decompression results including file properties and
decompressed content stream, used as follows:
stream
.through(gunzipIO)
.flatMap { gunzipResult =>
// Access properties here.
gunzipResult.content
}
Value Params
comment
File comment.
content
Uncompressed content stream.
fileName
File name.
modificationTime
Modification time of compressed file.
trait Serializable
trait Product
trait Equals
class Object
trait Matchable
class Any

Value members

Inherited methods

def productElementNames: Iterator[String]
Inhertied from
Product
def productIterator: Iterator[Any]
Inhertied from
Product