CompressedData Event

This event fires with compressed data.

Syntax

class ZipStreamCompressedDataEventParams {
public:
  const QByteArray &Data();
  int EventRetVal();
  void SetEventRetVal(int iRetVal);
};
// To handle, connect one or more slots to this signal. void CompressedData(ZipStreamCompressedDataEventParams *e);
// Or, subclass ZipStream and override this emitter function. virtual int FireCompressedData(ZipStreamCompressedDataEventParams *e) {...}

Remarks

The CompressedData event fires as compressed data is available when CompressData or CompressBlock is called. This may fire one or more times when data is compressed.

Data holds the current block of compressed data.

Copyright (c) 2022 /n software inc. - All rights reserved.
IPWorks ZIP 2020 Qt Edition - Version 20.0 [Build 8300]