zdk.objc
ZDKNetworkStatistics.h
1//
2// ZDKNetworkStatistics.h
3// ZDK
4//
5
6#ifndef ZDKNetworkStatistics_h
7#define ZDKNetworkStatistics_h
8
9#import <Foundation/Foundation.h>
10#import "ZDKZHandle.h"
11
12NS_ASSUME_NONNULL_BEGIN
13
15
21@property(nonatomic, readonly) int callChannel;
22
28@property(nonatomic, readonly) int totalInputPackets;
29
35@property(nonatomic, readonly) int totalInputBytes;
36
42@property(nonatomic, readonly) int totalInputBytesPayload;
43
49@property(nonatomic, readonly) int currentInputBitrate;
50
56@property(nonatomic, readonly) int averageInputBitrate;
57
63@property(nonatomic, readonly) int totalOutputPackets;
64
70@property(nonatomic, readonly) int totalOutputBytes;
71
77@property(nonatomic, readonly) int totalOutputBytesPayload;
78
84@property(nonatomic, readonly) int currentOutputBitrate;
85
91@property(nonatomic, readonly) int averageOutputBitrate;
92
98@property(nonatomic, readonly) int currentInputLossPermil;
99
100-(NSString*)handlesDescription;
101
102@end
103
104NS_ASSUME_NONNULL_END
105
106#endif
Definition: ZDKNetworkStatistics.h:14
int totalInputBytesPayload
Gets total input bytes payload.
Definition: ZDKNetworkStatistics.h:42
int averageInputBitrate
Gets the average input bitrate.
Definition: ZDKNetworkStatistics.h:56
int averageOutputBitrate
Gets the average output bitrate.
Definition: ZDKNetworkStatistics.h:91
int totalInputBytes
Gets total input bytes.
Definition: ZDKNetworkStatistics.h:35
int totalOutputPackets
Gets the total output packets.
Definition: ZDKNetworkStatistics.h:63
int totalOutputBytes
Gets the total output bytes.
Definition: ZDKNetworkStatistics.h:70
int currentOutputBitrate
Gets the total output bytes payload.
Definition: ZDKNetworkStatistics.h:84
int callChannel
Gets call channel.
Definition: ZDKNetworkStatistics.h:21
int currentInputLossPermil
Gets the current input loss permil.
Definition: ZDKNetworkStatistics.h:98
int totalOutputBytesPayload
Gets the total output bytes payload.
Definition: ZDKNetworkStatistics.h:77
int totalInputPackets
Gets total input packets.
Definition: ZDKNetworkStatistics.h:28
int currentInputBitrate
Gets current input bitrate.
Definition: ZDKNetworkStatistics.h:49
Definition: ZDKZHandle.h:13