YapDatabaseHooks

@interface YapDatabaseHooks : YapDatabaseExtension

- (instancetype)init;

@property (atomic, strong, readwrite, nullable) YapWhitelistBlacklist *allowedCollections;

@property (atomic, strong, readwrite, nullable) YDBHooks_WillModifyRow willModifyRow;
@property (atomic, strong, readwrite, nullable) YDBHooks_DidModifyRow   didModifyRow;

@property (atomic, strong, readwrite, nullable) YDBHooks_WillRemoveRow willRemoveRow;
@property (atomic, strong, readwrite, nullable) YDBHooks_DidRemoveRow   didRemoveRow;

@property (atomic, strong, readwrite, nullable) YDBHooks_WillRemoveAllRows willRemoveAllRows;
@property (atomic, strong, readwrite, nullable) YDBHooks_DidRemoveAllRows didRemoveAllRows;

@end

Undocumented