You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
webcrawler/core/src/test/resources/QueryComment.thrift

21 lines
329 B

/**
* 查询弹幕信息
*
**/
namespace java core.thrift.comment
service QueryComment{
/**
* 查询单个cid弹幕数
**/
i32 commentSum(1:i32 cid)
/**
* 批量查询多个cid弹幕数
**/
list<i32> commentSumList(1:list<i32> cids)
/**
* 批量下载弹幕
**/
string download(1:list<i32> cids,2:string fileName)
}