I'm using RxAlamofire for downloading file. I have something like this:
let downloadResult = download(request, to: destination)
Unfortunately downloadResult observable doesn't emit next event on download completed, it only emits onCompleted.
I need next event when download is finished to flatMap to next request. At the moment I'm basing on progress (download progress >= 1) to emit the event I'm interested in.
But I feel that it's not the best solution, for now it works, however I'm afraid this aproach may fail in some situation.
Can you suggest something? Do I miss something in RxAlamofire download api?
Maybe something like this ?