Nandu
05/05/2022, 8:39 PMgildor
05/06/2022, 5:01 PMNandu
05/09/2022, 6:38 AMgildor
05/10/2022, 3:05 AMgildor
05/10/2022, 3:14 AMgildor
05/10/2022, 3:20 AMgildor
05/10/2022, 3:25 AMif(encryptedUriList.size == unencryptedUriList){
and you will end up with race condition which cause that last check for encryptedUriList.size == unencryptedUriList is not passed and your callback is never called
encryptedUrilList.add
is also not thread safe and you may corrupt your list (some items will be lost) or get ArrayIndexOutOfBoundsNandu
05/11/2022, 6:04 AMgildor
05/11/2022, 7:28 AM