com.volcengine.service.rtc.RtcService Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of volc-sdk-java Show documentation
Show all versions of volc-sdk-java Show documentation
The VOLC Engine SDK for Java
package com.volcengine.service.rtc;
import com.volcengine.model.request.ListIndicatorsRequest;
import com.volcengine.model.request.ListRoomsRequest;
import com.volcengine.model.response.ListIndicatorsResponse;
import com.volcengine.model.response.ListRoomsResponse;
import com.volcengine.service.IBaseService;
/**
* The interface rtc service.
*/
public interface RtcService extends IBaseService {
ListRoomsResponse listRooms(ListRoomsRequest listRoomsRequest) throws Exception;
ListIndicatorsResponse listIndicators(ListIndicatorsRequest listIndicatorsRequest) throws Exception;
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy