FileDocCategorySizeDatePackage
PendingThumbnailsRecord.javaAPI DocAndroid 1.5 API1214Wed May 06 22:42:00 BST 2009com.android.server.am

PendingThumbnailsRecord

public class PendingThumbnailsRecord extends Object
This class keeps track of calls to getTasks() that are still waiting for thumbnail images.

Fields Summary
final android.app.IThumbnailReceiver
receiver
HashSet
pendingRecords
boolean
finished
Constructors Summary
PendingThumbnailsRecord(android.app.IThumbnailReceiver _receiver)

        receiver = _receiver;
        pendingRecords = new HashSet();
        finished = false;
    
Methods Summary