Sha256: 3c9ab29944e3af35196b395ccb06d83bcb8c1bf0a45113b9b1cce9765c7ad1c7
Contents?: true
Size: 558 Bytes
Versions: 7
Compression:
Stored size: 558 Bytes
Contents
#import <Foundation/Foundation.h> /** * Singleton class to represent the "value" for a key that was touched. (i.e. value didn't change) * * YapDatabase stores changesets in dictionaries, where the object represents the updated value for a key. * When an item is touched, we use this singleton as the value to signify internally that the item didn't change. * This allows us to act as if the item did change in most all respects, * but internally won't cause us to flush the item from the caches. **/ @interface YapTouch : NSObject + (id)touch; @end
Version data entries
7 entries across 3 versions & 1 rubygems