| 12345678910111213141516171819202122232425262728293031 |
- //
- // WebRTCStore.h
- // AIIM
- //
- // Created by gan on 2025/4/16.
- //
- #ifndef WebRTCStore_h
- #define WebRTCStore_h
- #endif /* WebRTCStore_h */
- @protocol WebRTCStoreDelegate <NSObject>
- @optional
- - (void)WebRTCStoreAct:(NSDictionary *_Nullable)actData;
- @end
- @interface WebRTCStore : NSObject
- + (WebRTCStore *_Nonnull)shareInstance;
- @property (nonatomic,weak) id <WebRTCStoreDelegate> delegate;
- @property (nonatomic) BOOL isBusy;
- @property (nonatomic,strong) NSString * _Nullable PeerId;
- -(void)reciveMsg:(NSDictionary *_Nonnull)msg;
- @end
|