Class Overview
ZLib delayed compression.
Summary
| Nested Classes |
|
class |
DelayedZlibCompression.Factory |
Named factory for the ZLib Delayed Compression. |
| Public Methods |
|
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.
|
|
[Expand]
Inherited Methods |
From class
net.schmizz.sshj.transport.compression.ZlibCompression
|
void
|
compress(Buffer buffer)
Compress the given buffer in place.
|
|
void
|
init(Compression.Mode mode)
Initialize this object to either compress or uncompress data.
|
|
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.
|
|
void
|
uncompress(Buffer from, Buffer to)
Uncompress the data in a buffer into another buffer.
|
|
From class
java.lang.Object
|
Object
|
clone()
|
|
boolean
|
equals(Object arg0)
|
|
void
|
finalize()
|
|
final
Class<?>
|
getClass()
|
|
int
|
hashCode()
|
|
final
void
|
notify()
|
|
final
void
|
notifyAll()
|
|
String
|
toString()
|
|
final
void
|
wait()
|
|
final
void
|
wait(long arg0, int arg1)
|
|
final
void
|
wait(long arg0)
|
|
From interface
net.schmizz.sshj.transport.compression.Compression
|
abstract
void
|
compress(Buffer buffer)
Compress the given buffer in place.
|
|
abstract
void
|
init(Compression.Mode mode)
Initialize this object to either compress or uncompress data.
|
|
abstract
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.
|
|
abstract
void
|
uncompress(Buffer from, Buffer to)
Uncompress the data in a buffer into another buffer.
|
|
Public Constructors
public
DelayedZlibCompression
()
Public Methods
public
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.
Returns
- if the compression is delayed after authentication or not