Alex Styl
12/01/2022, 7:12 AM// 1
call.receiveMultipart().forEachPart { part ->
// 2
when (part) {
is PartData.FileItem -> {
val input = part.provider()
// Read from input by chunks
}
else -> {}
}
}
I would like to listen to the progress between (1) and (2). Right now (1) is called, then the file is fully uploaded to the server, and then (2) is called.FunkyMuse
12/01/2022, 7:14 AMAlex Styl
12/01/2022, 7:23 AMAlex Styl
12/01/2022, 7:41 AMFunkyMuse
12/01/2022, 7:42 AMAlex Styl
12/01/2022, 7:57 AMAlex Styl
12/01/2022, 7:58 AMAlex Styl
12/01/2022, 2:29 PMAlex Styl
12/01/2022, 2:54 PMe5l
12/01/2022, 2:57 PMAlex Styl
12/01/2022, 3:00 PMseb
12/01/2022, 3:19 PMAlex Styl
12/06/2022, 1:56 AMAleksei Tirman [JB]
12/06/2022, 7:42 AM