PocketMine-MP 5.21.2 git-b2aa6396c3cc2cafdd815eacc360e1ad89599899
|
Public Member Functions | |
compress (string $payload) | |
decompress (string $payload) | |
getCompressionThreshold () | |
getNetworkId () | |
Definition at line 28 of file Compressor.php.
pocketmine\network\mcpe\compression\Compressor::decompress | ( | string | $payload | ) |
DecompressionException |
Implemented in pocketmine\network\mcpe\compression\ZlibCompressor.
pocketmine\network\mcpe\compression\Compressor::getCompressionThreshold | ( | ) |
Returns the minimum size of packet batch that the compressor will attempt to compress.
The compressor's output MUST still be valid input for the decompressor even if the compressor input is below this threshold. However, it may choose to use a cheaper compression option (e.g. zlib level 0, which simply wraps the data and doesn't attempt to compress it) to avoid wasting CPU time.
Implemented in pocketmine\network\mcpe\compression\ZlibCompressor.
pocketmine\network\mcpe\compression\Compressor::getNetworkId | ( | ) |
Returns the canonical ID of this compressor, used to tell the remote end how to decompress a packet compressed with this compressor.
Implemented in pocketmine\network\mcpe\compression\ZlibCompressor.