Compressor Konstruktoren

Definition

Überlädt

Compressor(IOutputStream)

Erstellt eine instance eines Kompressors.

Compressor(IOutputStream, CompressAlgorithm, UInt32)

Erstellt eine instance eines Kompressors.

Compressor(IOutputStream)

Erstellt eine instance eines Kompressors.

public:
 Compressor(IOutputStream ^ underlyingStream);
 Compressor(IOutputStream const& underlyingStream);
public Compressor(IOutputStream underlyingStream);
function Compressor(underlyingStream)
Public Sub New (underlyingStream As IOutputStream)

Parameter

underlyingStream
IOutputStream

Der Strom komprimierter Informationen, die vom Kompressor geschrieben werden sollen.

Weitere Informationen

Gilt für:

Compressor(IOutputStream, CompressAlgorithm, UInt32)

Erstellt eine instance eines Kompressors.

public:
 Compressor(IOutputStream ^ underlyingStream, CompressAlgorithm algorithm, unsigned int blockSize);
 Compressor(IOutputStream const& underlyingStream, CompressAlgorithm const& algorithm, uint32_t const& blockSize);
public Compressor(IOutputStream underlyingStream, CompressAlgorithm algorithm, uint blockSize);
function Compressor(underlyingStream, algorithm, blockSize)
Public Sub New (underlyingStream As IOutputStream, algorithm As CompressAlgorithm, blockSize As UInteger)

Parameter

underlyingStream
IOutputStream

Der Strom komprimierter Informationen, die vom Kompressor geschrieben werden sollen.

algorithm
CompressAlgorithm

Der Komprimierungsalgorithmus, der vom Kompressor zum Schreiben von underlyingStream verwendet wird.

blockSize
UInt32

unsigned int

uint32_t

Größe des vom Komprimierungsalgorithmus verwendeten Zwischenpuffers in Bytes. Der Wert 0 gibt an, dass der Komprimierungsalgorithmus seine Standardblockgröße verwendet. Gültige Werte ungleich 0 für diesen Parameter sind 32 KB bis 64 MB.

Weitere Informationen

Gilt für: