Class DelayedZlibCompression
- java.lang.Object
-
- net.schmizz.sshj.transport.compression.ZlibCompression
-
- net.schmizz.sshj.transport.compression.DelayedZlibCompression
-
- All Implemented Interfaces:
Compression
public class DelayedZlibCompression extends ZlibCompression
ZLib delayed compression.- See Also:
Compression.isDelayed()
-
-
Nested Class Summary
Nested Classes Modifier and Type Class Description static class
DelayedZlibCompression.Factory
Named factory for the ZLib Delayed Compression.-
Nested classes/interfaces inherited from interface net.schmizz.sshj.transport.compression.Compression
Compression.Mode
-
-
Constructor Summary
Constructors Constructor Description DelayedZlibCompression()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description boolean
isDelayed()
Delayed compression is an Open-SSH specific feature which informs both the client and server to not compress data before the session has been authenticated.-
Methods inherited from class net.schmizz.sshj.transport.compression.ZlibCompression
compress, init, uncompress
-
-
-
-
Method Detail
-
isDelayed
public boolean isDelayed()
Description copied from interface:Compression
Delayed compression is an Open-SSH specific feature which informs both the client and server to not compress data before the session has been authenticated.- Specified by:
isDelayed
in interfaceCompression
- Overrides:
isDelayed
in classZlibCompression
- Returns:
- if the compression is delayed after authentication or not
-
-