iipReportChunk method

void iipReportChunk(
  1. int callbackId,
  2. TransmissionType dataType,
  3. DC data
)

Implementation

void iipReportChunk(int callbackId, TransmissionType dataType, DC data) {
  if (_requests.containsKey(callbackId)) {
    var req = _requests[callbackId];
    Codec.parse(data, 0, this, null, dataType).reply.then((x) {
      req?.triggerChunk(x);
    });
  }
}