Video SDK for iOS API Reference
Loading...
Searching...
No Matches
ZoomVideoSDKSession.h
Go to the documentation of this file.
1
6#import <Foundation/Foundation.h>
7#import <ZoomVideoSDK/ZoomVideoSDKUser.h>
8
9#pragma mark - Statistic Information -
18@property(nonatomic, assign, readonly) NSInteger sendFrequency;
22@property(nonatomic, assign, readonly) NSInteger sendLatency;
26@property(nonatomic, assign, readonly) NSInteger sendJitter;
30@property(nonatomic, assign, readonly) CGFloat sendPacketLossAvg;
34@property(nonatomic, assign, readonly) CGFloat sendPacketLossMax;
38@property(nonatomic, assign, readonly) NSInteger recvFrequency;
42@property(nonatomic, assign, readonly) NSInteger recvLatency;
46@property(nonatomic, assign, readonly) NSInteger recvJitter;
50@property(nonatomic, assign, readonly) CGFloat recvPacketLossAvg;
54@property(nonatomic, assign, readonly) CGFloat recvPacketLossMax;
55
56@end
57
66@property(nonatomic, assign, readonly) NSInteger sendFrameWidth;
70@property(nonatomic, assign, readonly) NSInteger sendFrameHeight;
74@property(nonatomic, assign, readonly) NSInteger sendFps;
78@property(nonatomic, assign, readonly) NSInteger sendLatency;
82@property(nonatomic, assign, readonly) NSInteger sendJitter;
86@property(nonatomic, assign, readonly) CGFloat sendPacketLossAvg;
90@property(nonatomic, assign, readonly) CGFloat sendPacketLossMax;
94@property(nonatomic, assign, readonly) NSInteger recvFrameWidth;
98@property(nonatomic, assign, readonly) NSInteger recvFrameHeight;
102@property(nonatomic, assign, readonly) NSInteger recvFps;
106@property(nonatomic, assign, readonly) NSInteger recvLatency;
110@property(nonatomic, assign, readonly) NSInteger recvJitter;
114@property(nonatomic, assign, readonly) CGFloat recvPacketLossAvg;
118@property(nonatomic, assign, readonly) CGFloat recvPacketLossMax;
119@end
120
121
122#pragma mark - ZoomVideoSDKSession -
127@interface ZoomVideoSDKSession : NSObject
128
133- (NSString * _Nullable)getSessionName;
134
140- (NSString * _Nullable)getSessionID;
141
146- (unsigned long long)getSessionNumber;
147
152- (NSString * _Nullable)getSessionPassword;
153
158- (NSString * _Nullable)getSessionPhonePasscode;
159
164- (NSString * _Nullable)getSessionHostName;
165
170- (ZoomVideoSDKUser * _Nullable)getSessionHost;
171
176- (NSArray <ZoomVideoSDKUser *>* _Nullable)getRemoteUsers;
177
182- (ZoomVideoSDKUser * _Nullable)getMySelf;
183
188- (ZoomVideoSDKSessionAudioStatisticInfo * _Nullable)getSessionAudioStatisticInfo;
189
194- (ZoomVideoSDKSessionASVStatisticInfo * _Nullable)getSessionVideoStatisticInfo;
195
200- (ZoomVideoSDKSessionASVStatisticInfo * _Nullable)getSessionShareStatisticInfo;
201
202#pragma mark - file transfer -
203
208- (BOOL)isFileTransferEnable;
209
216- (ZoomVideoSDKError)transferFile:(NSString * _Nullable)filePath;
217
222- (NSString *_Nullable)getTransferFileTypeWhiteList;
223
228- (unsigned long long)getMaxTransferFileSize;
229
234- (ZoomVideoSDKSessionType)getSessionType;
235
236@end
ZoomVideoSDKSessionType
Enumeration of the session type.
ZoomVideoSDKError
Enumeration of all the errors in the VideoSDK.
The Session video or share statistic information.
Session audio statistic information.
CGFloat recvPacketLossAvg
The average audio packet loss received by the current user.
NSInteger recvFrequency
The frequency in kilohertz (KHz) received by the current user.
NSInteger sendFrequency
The frequency in kilohertz (KHz) sent by the current user.
NSInteger sendLatency
The audio latency (delay in network data transfer) experienced by the current user while sending data...
CGFloat sendPacketLossAvg
The average audio packet loss sent by the current user.
NSInteger recvLatency
The audio latency (delay in network data transfer) experienced by the current user while receiving da...
NSInteger sendJitter
The audio jitter (change in latency) experienced by the current user while sending data.
CGFloat sendPacketLossMax
The maximum audio packet loss sent by the current user.
NSInteger recvJitter
The audio jitter (change in latency) experienced by the current user while receiving data.
CGFloat recvPacketLossMax
The maximum audio packet loss received by the current user.
Zoom Video SDK session.
Zoom Video SDK user information.