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
147- (unsigned long long)getSessionNumber;
148
153- (NSString * _Nullable)getSessionPassword;
154
160- (NSString * _Nullable)getSessionPhonePasscode;
161
166- (NSString * _Nullable)getSessionHostName;
167
172- (ZoomVideoSDKUser * _Nullable)getSessionHost;
173
178- (NSArray <ZoomVideoSDKUser *>* _Nullable)getRemoteUsers;
179
184- (ZoomVideoSDKUser * _Nullable)getMySelf;
185
190- (ZoomVideoSDKSessionAudioStatisticInfo * _Nullable)getSessionAudioStatisticInfo;
191
196- (ZoomVideoSDKSessionASVStatisticInfo * _Nullable)getSessionVideoStatisticInfo;
201- (ZoomVideoSDKSessionASVStatisticInfo * _Nullable)getSessionShareStatisticInfo;
202
203#pragma mark - file transfer -
204
209- (BOOL)isFileTransferEnable;
210
217- (ZoomVideoSDKError)transferFile:(NSString * _Nullable)filePath;
218
223- (NSString *_Nullable)getTransferFileTypeWhiteList;
224
229- (unsigned long long)getMaxTransferFileSize;
230
231@end
ZoomVideoSDKError
Enumerates all 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.