session-ios/SignalMessaging/environment/migrations/OWSDatabaseMigration.h
nielsandriesse 74bbe067d8 Update Pods
2020-06-05 10:38:44 +10:00

26 lines
748 B
Objective-C

//
// Copyright (c) 2018 Open Whisper Systems. All rights reserved.
//
#import <SessionServiceKit/TSYapDatabaseObject.h>
NS_ASSUME_NONNULL_BEGIN
typedef void (^OWSDatabaseMigrationCompletion)(void);
@class OWSPrimaryStorage;
@interface OWSDatabaseMigration : TSYapDatabaseObject
@property (nonatomic, readonly) OWSPrimaryStorage *primaryStorage;
// Prefer nonblocking (async) migrations by overriding `runUpWithTransaction:` in a subclass.
// Blocking migrations running too long will crash the app, effectively bricking install
// because the user will never get past it.
// If you must write a launch-blocking migration, override runUp.
- (void)runUpWithCompletion:(OWSDatabaseMigrationCompletion)completion;
@end
NS_ASSUME_NONNULL_END