Is it true that it is undesirable to create more than 10 additional threads? Example:
for(int i=0; i<100; i++) {
new Thread() {
public void run() {
// something
}
}.start();
}
that will create and start 100 threads. That is not good, right?
UPDATE > Every thread are downloading something and put it into the bundle