Android Question POP3 multi-thread ?

b4auser1

Well-Known Member
Licensed User
Longtime User
If there are a few messages, then they are downloaded in different threads using Net POP3 subs ?
I mean, if this code will start a separate thread for each of Message ?
B4X:
            For Each id As Int In Messages.Keys
                pop.DownloadMessage(id, True) 'message will be deleted from the server
            Next
 
Top