The "zlib" decompression algorithm.

Methods
Public Class methods
new()

Creates a new ZLibDecompressor.

    # File lib/net/ssh/transport/compress/zlib-decompressor.rb, line 30
30:           def initialize
31:             init_inflater
32:           end
Public Instance methods
decompress( text )

Decompresses the text using the "inflate" Zlib algorithm.

    # File lib/net/ssh/transport/compress/zlib-decompressor.rb, line 35
35:           def decompress( text )
36:             @inflater.inflate( text )
37:           end

[Validate]