I am using BackgroundTransferService
in my application for downloading zip file form the server.
And it works successfully for me. But it seems it gets some thread exit messages continuously even after downloading file.
The messages like as follows
The thread 0x3d68 has exited with code 0 (0x0).
The thread 0x4080 has exited with code 0 (0x0).
The thread 0x4300 has exited with code 0 (0x0).
The thread 0x4084 has exited with code 0 (0x0).
The thread 0x431c has exited with code 0 (0x0).
The thread 0x44fc has exited with code 0 (0x0).
The thread 0x41c0 has exited with code 0 (0x0).
The thread 0x4144 has exited with code 0 (0x0).
The thread 0x17cc has exited with code 0 (0x0).
The thread 0x3b14 has exited with code 0 (0x0).
.....
..
Why this messages are showing long time even after the download completed? Is that because of some bg service not dispose properly?