2015-03-23 22:07:33 +00:00
|
|
|
/**
|
|
|
|
* Copyright (c) 2015-present, Facebook, Inc.
|
|
|
|
*
|
2018-02-17 02:24:55 +00: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 22:07:33 +00:00
|
|
|
*/
|
2015-03-12 19:51:44 +00:00
|
|
|
|
2016-11-23 15:47:52 +00:00
|
|
|
#import <React/RCTBridgeModule.h>
|
|
|
|
#import <React/RCTInvalidating.h>
|
2015-03-12 19:51:44 +00: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 16:29:31 +00:00
|
|
|
@interface RCTAsyncLocalStorage : NSObject <RCTBridgeModule,RCTInvalidating>
|
|
|
|
|
|
|
|
@property (nonatomic, assign) BOOL clearOnInvalidate;
|
2015-03-12 19:51:44 +00:00
|
|
|
|
2015-08-14 08:59:42 +00:00
|
|
|
@property (nonatomic, readonly, getter=isValid) BOOL valid;
|
|
|
|
|
2015-11-03 22:45:46 +00:00
|
|
|
// Clear the RCTAsyncLocalStorage data from native code
|
|
|
|
- (void)clearAllData;
|
2015-03-12 19:51:44 +00:00
|
|
|
|
2015-06-18 16:29:31 +00:00
|
|
|
// For clearing data when the bridge may not exist, e.g. when logging out.
|
2015-06-22 21:37:11 +00:00
|
|
|
+ (void)clearAllData;
|
2015-06-18 16:29:31 +00:00
|
|
|
|
2015-03-12 19:51:44 +00:00
|
|
|
@end
|