添加 LiveClient.sendBulletScreen 的快捷调用

This commit is contained in:
czp 2018-02-06 15:34:00 +08:00
parent c4d2a9a870
commit 7f2947ad8a

View File

@ -150,14 +150,18 @@ public class LiveClient implements Closeable {
}
public SendBulletScreenResponseEntity sendBulletScreen(String message) throws IOException {
return bilibiliServiceProvider.getLiveService()
.sendBulletScreen(
new BulletScreenEntity(
liveRoomEntity != null ? liveRoomEntity.getRoomId() : showRoomId,
userId,
message
)
return sendBulletScreen(
new BulletScreenEntity(
liveRoomEntity != null ? liveRoomEntity.getRoomId() : showRoomId,
userId,
message
)
);
}
public SendBulletScreenResponseEntity sendBulletScreen(BulletScreenEntity bulletScreenEntity) throws IOException {
return bilibiliServiceProvider.getLiveService()
.sendBulletScreen(bulletScreenEntity)
.execute()
.body();
}