this.iStream = new ZFlushInputStream(iStream);
this.oStream = new ZFlushOutputStream(oStream);
}
else if (isCompressZlib()) { // Compress each message indiviually
this.iStream = new ZBlockInputStream(iStream);
this.oStream = new ZBlockOutputStream(oStream, getMinSizeForCompression());
}
else {
this.iStream = iStream;
this.oStream = oStream;
}