In case of images how does thread spawning work? Can I stop the AWT from creating a thread for the image while loading?
Created May 7, 2012
Kevin Riff You seem to think that a new thread is created for each image you download. That's simply not the case. Most AWT implementations use a small pool of threads (usually 4) for downloading images. The programmer has no control over these threads or how they're created.