davbeck/MultipartForm

Implementing progress handler when uploading multipart/form-data

abdul-abdu opened this issue · 1 comments

Implementing progress handler when uploading multipart/form-data

You can probably do it and implement it yourself like so:

// store this to a strong var.
uploadProgressObservation = task.progress.observe(\.fractionCompleted) { fraction, _ in
  print("processUploadRequest upload progress -> \(fraction.fractionCompleted)")
}