com.qiniu.rtc.model.ForwardParam Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of qiniu-java-sdk Show documentation
Show all versions of qiniu-java-sdk Show documentation
Qiniu Cloud Storage SDK for Java
package com.qiniu.rtc.model;
import lombok.Data;
import java.util.List;
/**
* 转推的参数
*/
@Data
public class ForwardParam {
private String id;
private String publishUrl;
private String playerId;
private List tracks;
public ForwardParam(String id, String publishUrl, String playerId) {
this.id = id;
this.publishUrl = publishUrl;
this.playerId = playerId;
}
@Data
public static class TrackInfo {
private String trackId;
public TrackInfo(String trackId) {
this.trackId = trackId;
}
public TrackInfo() {
}
}
public ForwardParam() {
}
}
© 2015 - 2024 Weber Informatics LLC | Privacy Policy