Sha256: a670499aa4925721976a1f7bce0999735d1cf16c2b16e2f3deef4b59f802f9c6
Contents?: true
Size: 578 Bytes
Versions: 7
Compression:
Stored size: 578 Bytes
Contents
#import <Foundation/Foundation.h> /** * There should only be one YapDatabase or YapCollectionDatabase per file. * * The architecture design is to create a single parent database instance, * and then spawn connections to the database as needed from the parent. * * The architecture is built around this restriction, and is dependent upon it for proper operation. * This class simply helps maintain this requirement. **/ @interface YapDatabaseManager : NSObject + (BOOL)registerDatabaseForPath:(NSString *)path; + (void)deregisterDatabaseForPath:(NSString *)path; @end
Version data entries
7 entries across 3 versions & 1 rubygems