virtual void onJoinChannel(const char* channel, int channelSize, const char* me, int meSize, const char* members, int memberSize, const char* opts, int optSize) = 0;
```typescript
**触发条件**
加入频道成功
**参数**
| channel | 房间信息 |
| --- | --- |
| channelSize | 房间信息长度 |
| me | 自己信息[查看](https://www.yuque.com/anyconf/rtcengine/rhsp7k#Cz51I) |
| meSize | 自己信息长度 |
| members | 会中成员信息集合[查看](https://www.yuque.com/anyconf/rtcengine/rhsp7k#Cz51I) |
| memberSize | 会中成员信息集合长度 |
| opts | 系统配置参数 |
| optSize | 系统配置参数长度 |
### 房间状态更新回调
```cpp
virtual void onChannelUpdate(const char* channelId,const char * props, int propsSize) = 0;