NERtcCallKit for iOS V3.1.0
载入中...
搜索中...
未找到
NECallInfo.h
浏览该文件的文档.
1// Copyright (c) 2022 NetEase, Inc. All rights reserved.
2// Use of this source code is governed by a MIT license that can be
3// found in the LICENSE file.
4
5#import <Foundation/Foundation.h>
7#import "NERtcInfo.h"
8#import "NESignalInfo.h"
9#import "NEUserInfo.h"
10
11NS_ASSUME_NONNULL_BEGIN
12
13@interface NECallInfo : NSObject
14
16@property(nonatomic, strong) NSString *callId;
17
19@property(nonatomic, strong) NSString *currentAccId;
20
22@property(nonatomic, strong) NEUserInfo *callerInfo;
23
25@property(nonatomic, strong) NEUserInfo *calleeInfo;
26
28@property(nonatomic, assign) NECallType callType;
29
31@property(nonatomic, strong) NESignalInfo *signalInfo;
32
34@property(nonatomic, strong) NERtcInfo *rtcInfo;
35
37@property(nonatomic, assign) NECallEngineStatus callStatus;
38
39@end
40
41NS_ASSUME_NONNULL_END
NECallEngineStatus
引擎状态
定义 NECallEngineConsts.h:29
定义 NECallInfo.h:14
NECallType callType
通话类型,1 音频,2 视频
定义 NECallInfo.h:28
NSString * callId
呼叫通话唯一Id
定义 NECallInfo.h:16
NSString * currentAccId
当前用户IM accId
定义 NECallInfo.h:19
NEUserInfo * calleeInfo
被叫方信息
定义 NECallInfo.h:25
NESignalInfo * signalInfo
信令配置相关参数
定义 NECallInfo.h:31
NECallEngineStatus callStatus
0 空闲,1 呼叫中 2 正在被呼叫 3 通话中
定义 NECallInfo.h:37
NERtcInfo * rtcInfo
音视频频道相关信息
定义 NECallInfo.h:34
NEUserInfo * callerInfo
主叫方信息
定义 NECallInfo.h:22
定义 NERtcInfo.h:10
定义 NESignalInfo.h:10
定义 NEUserInfo.h:10