| java.lang.Object java.io.InputStream com.mysql.jdbc.CompressedInputStream
CompressedInputStream | class CompressedInputStream extends InputStream (Code) | | Used to de-compress packets from the MySQL server when protocol-level
compression is turned on.
author: Mark Matthews version: $Id: CompressedInputStream.java,v 1.1.2.1 2005/05/13 18:58:37 version: mmatthews Exp $ |
Method Summary | |
public int | available() | public void | close() | public int | read() | public int | read(byte[] b) | public int | read(byte[] b, int off, int len) | public long | skip(long n) |
CompressedInputStream | public CompressedInputStream(Connection conn, InputStream streamFromServer)(Code) | | Creates a new CompressedInputStream that reads the given stream from the
server.
Parameters: conn - DOCUMENT ME! Parameters: streamFromServer - |
|
|