-
Notifications
You must be signed in to change notification settings - Fork 23
Expand file tree
/
Copy pathStringeeManager.h
More file actions
34 lines (21 loc) · 826 Bytes
/
StringeeManager.h
File metadata and controls
34 lines (21 loc) · 826 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
//
// StringeeManager.h
// stringee_flutter_plugin
//
// Created by HoangDuoc on 1/8/21.
//
#import <Foundation/Foundation.h>
#import <Stringee/Stringee.h>
NS_ASSUME_NONNULL_BEGIN
@interface StringeeManager : NSObject
@property (nonatomic) NSMutableDictionary *calls;
@property (nonatomic) NSMutableDictionary *call2s;
@property (nonatomic) NSMutableDictionary *call2VideoTracks;
+ (StringeeManager *)instance;
- (void)addTrackForCall2:(StringeeVideoTrack *)track callId:(NSString *)callId;
- (void)removeTrackForCall2:(NSString *)callId;
- (StringeeVideoTrack *)getVideoTrackForCall2:(NSString *)callId trackId:(NSString*)trackId;
- (void)removeTrackForCall2:(NSString *)callId trackId:(NSString *)trackId;
- (StringeeVideoTrack *)getVideoTrackForCall2ByTracKId:(NSString*)trackId;
@end
NS_ASSUME_NONNULL_END