Increase the upper limit of the number of people in the room and reduce the cost of subscribing to long connections. (sdk upgrade to the latest support)
Detailed description of read-only mode and interactive mode
public class RoomParams extends WhiteObject {
public void setWritable(boolean writable) {
isWritable = writable;
}
}
/**
* Set read and write mode
* @param writable is writable
* @param promise completes the callback and returns the reading and writing status of the room at the same time
* @since 2.6.1
*/
public void setWritable(final boolean writable, @Nullable final Promise<Boolean> promise);