Files
yinmeng-ios/xplan-ios/Main/RTC/RtcImpl/RtcInterface.h

32 lines
420 B
Objective-C

//
// RtcInterface.h
// xplan-ios
//
// Created by 冯硕 on 2021/10/20.
//
#import <Foundation/Foundation.h>
NS_ASSUME_NONNULL_BEGIN
@protocol RtcInterface <NSObject>
/**
加入频道(房间)
*/
- (BOOL)joinChannel:(NSString *)channelId;
/**
上下麦(说话)
*/
- (void)broadcast:(BOOL)on;
/**
退出频道
*/
- (void)exitChannel;
/**
销毁引擎
*/
- (void)destory;
@end
NS_ASSUME_NONNULL_END