Reputation: 4654
While debuging a Swing application I saw this thread appear quite offen. There is a another thread called "Image Fetcher 1" also.
Can someone please explain to me what does this thread do. Is it realated to "SwingWorker" Thread?
Upvotes: 0
Views: 1738
Reputation: 14243
When you attempt to load a media resource in Swing, the request is passed to an instance of MediaTracker. The MediaTracker
implementation will then allocate the loading task to one of a pool of image fetcher threads.
Upvotes: 4