Method | Description | |
---|---|---|
Compress ( Stream input ) : byte[] |
지정된 스트림을 압축합니다.
|
|
Compress ( byte input ) : byte[] |
바이트 배열 데이터를 압축합니다.
|
|
CompressAdapter ( ) : System | ||
CompressAdapter ( Func |
||
CompressAdapter ( ICompressor compressor ) : System | ||
CompressAsync ( Stream sourceStream, Stream destinationStream ) : void |
원본 스트림을 압축하여, 대상 스트림에 씁니다.
|
|
Decompress ( byte input ) : byte[] |
바이트 배열 데이터를 복원합니다.
|
|
Decompress ( byte input, Stream destinationStream ) : void |
지정한 데이터를 압축하여, destinationStream 에 저장합니다.
|
|
DecompressAsync ( Stream sourceStream, Stream targetStream ) : void |
원본 스트림을 압축 해제하여, 대상 스트림에 씁니다.
|
public CompressAdapter ( Func |
||
@compressorFactory | Func |
|
return | System |
public CompressAdapter ( ICompressor compressor ) : System | ||
compressor | ICompressor | |
return | System |
public CompressAsync ( Stream sourceStream, Stream destinationStream ) : void | ||
sourceStream | Stream | |
destinationStream | Stream | |
return | void |
public Decompress ( byte input, Stream destinationStream ) : void | ||
input | byte | |
destinationStream | Stream | |
return | void |
public DecompressAsync ( Stream sourceStream, Stream targetStream ) : void | ||
sourceStream | Stream | |
targetStream | Stream | |
return | void |