2017-06-08 14:34:45 +00:00
|
|
|
// Copyright 2004-present Facebook. All Rights Reserved.
|
|
|
|
|
|
|
|
#import <Foundation/Foundation.h>
|
|
|
|
#import <React/RCTDefines.h>
|
|
|
|
|
|
|
|
#if RCT_DEV
|
|
|
|
|
2018-02-01 14:13:19 +00:00
|
|
|
@interface RCTBundleStatus : NSObject
|
|
|
|
@property (atomic, assign) BOOL isLastBundleDownloadSuccess;
|
|
|
|
@property (atomic, assign) NSTimeInterval bundleUpdateTimestamp;
|
|
|
|
@end
|
|
|
|
|
|
|
|
typedef RCTBundleStatus *(^RCTBundleStatusProvider)(void);
|
|
|
|
|
2017-06-08 14:34:45 +00:00
|
|
|
@interface RCTInspectorPackagerConnection : NSObject
|
|
|
|
- (instancetype)initWithURL:(NSURL *)url;
|
2018-02-01 14:13:19 +00:00
|
|
|
|
2017-06-08 14:34:45 +00:00
|
|
|
- (void)connect;
|
|
|
|
- (void)closeQuietly;
|
2017-08-14 15:07:13 +00:00
|
|
|
- (void)sendEventToAllConnections:(NSString *)event;
|
2018-02-01 14:13:19 +00:00
|
|
|
- (void)setBundleStatusProvider:(RCTBundleStatusProvider)bundleStatusProvider;
|
2017-06-08 14:34:45 +00:00
|
|
|
@end
|
|
|
|
|
|
|
|
@interface RCTInspectorRemoteConnection : NSObject
|
|
|
|
- (void)onMessage:(NSString *)message;
|
|
|
|
- (void)onDisconnect;
|
|
|
|
@end
|
|
|
|
|
|
|
|
#endif
|