2015-03-23 15:07:33 -07:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-16 18:24:55 -08:00
|
|
|
* This source code is licensed under the MIT license found in the
|
|
|
|
* LICENSE file in the root directory of this source tree.
|
2015-03-23 15:07:33 -07:00
|
|
|
*/
|
2015-03-12 12:51:44 -07:00
|
|
|
|
2016-11-23 07:47:52 -08:00
|
|
|
#import <React/RCTBridgeModule.h>
|
|
|
|
#import <React/RCTInvalidating.h>
|
2015-03-12 12:51:44 -07:00
|
|
|
|
|
|
|
/**
|
|
|
|
* A simple, asynchronous, persistent, key-value storage system designed as a
|
|
|
|
* backend to the AsyncStorage JS module, which is modeled after LocalStorage.
|
|
|
|
*
|
|
|
|
* Current implementation stores small values in serialized dictionary and
|
|
|
|
* larger values in separate files. Since we use a serial file queue
|
|
|
|
* `RKFileQueue`, reading/writing from multiple threads should be perceived as
|
|
|
|
* being atomic, unless someone bypasses the `RCTAsyncLocalStorage` API.
|
|
|
|
*
|
|
|
|
* Keys and values must always be strings or an error is returned.
|
|
|
|
*/
|
2015-06-18 09:29:31 -07:00
|
|
|
@interface RCTAsyncLocalStorage : NSObject <RCTBridgeModule,RCTInvalidating>
|
|
|
|
|
|
|
|
@property (nonatomic, assign) BOOL clearOnInvalidate;
|
2015-03-12 12:51:44 -07:00
|
|
|
|
2015-08-14 01:59:42 -07:00
|
|
|
@property (nonatomic, readonly, getter=isValid) BOOL valid;
|
|
|
|
|
2015-11-03 14:45:46 -08:00
|
|
|
// Clear the RCTAsyncLocalStorage data from native code
|
|
|
|
- (void)clearAllData;
|
2015-03-12 12:51:44 -07:00
|
|
|
|
2015-06-18 09:29:31 -07:00
|
|
|
// For clearing data when the bridge may not exist, e.g. when logging out.
|
2015-06-22 14:37:11 -07:00
|
|
|
+ (void)clearAllData;
|
2015-06-18 09:29:31 -07:00
|
|
|
|
2015-03-12 12:51:44 -07:00
|
|
|
@end
|