Show
Ignore:
Timestamp:
05/11/2009 04:51:19 PM (3 years ago)
Author:
gbooker
Message:

Delete unused objects as they become unused so as to not need the prune call later. This will help accelerate things later. Also, handled XML a bit better.

Files:
1 modified

Legend:

Unmodified
Added
Removed
  • branches/CoreData/SapphireFrappliance/MetaData/Support/SapphireMetaDataSupport.h

    r820 r840  
    4444 */ 
    4545+ (void)pruneMetaData:(NSManagedObjectContext *)moc; 
     46 
     47/*! 
     48 * @brief Sets an object up for pending delete 
     49 * 
     50 * Any object added to this set will be first checked before delete.  The check is calling selector 
     51 * shouldDelete and if returns YES, performs the delete, otherwise it is removed from set. 
     52 * 
     53 * @param objectToDelete The object to delete 
     54 */ 
     55+ (void)setObjectForPendingDelete:(NSManagedObject *)objectToDelete; 
    4656 
    4757/*!