Package com.jcraft.jsch
Interface Compression
-
- All Known Implementing Classes:
Compression
,Compression
public interface Compression
-
-
Method Summary
All Methods Instance Methods Abstract Methods Default Methods Modifier and Type Method Description byte[]
compress(byte[] buf, int start, int[] len)
default void
end()
void
init(int type, int level)
default void
init(int type, int level, Session session)
byte[]
uncompress(byte[] buf, int start, int[] len)
-
-
-
Field Detail
-
INFLATER
static final int INFLATER
- See Also:
- Constant Field Values
-
DEFLATER
static final int DEFLATER
- See Also:
- Constant Field Values
-
-
Method Detail
-
init
default void init(int type, int level, Session session)
-
end
default void end()
-
init
void init(int type, int level)
-
compress
byte[] compress(byte[] buf, int start, int[] len)
-
uncompress
byte[] uncompress(byte[] buf, int start, int[] len)
-
-