* Resets the deflater. The deflater acts afterwards as if it was * just created with the same compression level and strategy as it * had before.
()
| 123 | * had before. |
| 124 | */ |
| 125 | public reset() { |
| 126 | this._state = Deflater._busyState; |
| 127 | this._pending.reset(); |
| 128 | this._engine.reset(); |
| 129 | } |
| 130 | |
| 131 | /** |
| 132 | * Sets the data which should be compressed next. This should be |