MutableZlibOptions
data class MutableZlibOptions @JvmOverloads constructor(var flush: Int = ModernNodeZlibConstants.Z_NO_FLUSH, var finishFlush: Int = ModernNodeZlibConstants.Z_FINISH, var chunkSize: Int = ModernNodeZlibConstants.Z_DEFAULT_CHUNK, var windowBits: Int = ModernNodeZlibConstants.Z_DEFAULT_WINDOWBITS, var level: Int? = ModernNodeZlibConstants.Z_DEFAULT_LEVEL, var memLevel: Int? = ModernNodeZlibConstants.Z_DEFAULT_MEMLEVEL, var strategy: Int? = ModernNodeZlibConstants.Z_DEFAULT_STRATEGY, var dictionary: Any? = null, var info: Boolean = false, var maxOutputLength: Int = 0) : MutableZlibOptions, ZlibOptionsDefaults
Zlib Options (Mutable)
Implements a mutable suite of Zlib options object.
Constructors
Link copied to clipboard
constructor(flush: Int = ModernNodeZlibConstants.Z_NO_FLUSH, finishFlush: Int = ModernNodeZlibConstants.Z_FINISH, chunkSize: Int = ModernNodeZlibConstants.Z_DEFAULT_CHUNK, windowBits: Int = ModernNodeZlibConstants.Z_DEFAULT_WINDOWBITS, level: Int? = ModernNodeZlibConstants.Z_DEFAULT_LEVEL, memLevel: Int? = ModernNodeZlibConstants.Z_DEFAULT_MEMLEVEL, strategy: Int? = ModernNodeZlibConstants.Z_DEFAULT_STRATEGY, dictionary: Any? = null, info: Boolean = false, maxOutputLength: Int = 0)
Types
Link copied to clipboard
Constructor definitions for MutableZlibOptions.
Properties
Functions
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Create an immutable copy of this MutableZlibOptions.