Added startTime to LiveRoomInfo to determine when the stream started!

This commit is contained in:
kohlerpop1
2023-12-20 14:07:53 -05:00
parent e44cb71869
commit 7b911838a2
8 changed files with 30 additions and 62 deletions

View File

@@ -33,6 +33,8 @@ public class TikTokUserInfo
String roomId;
long startTime;
public enum UserStatus
{
NotFound,
@@ -40,4 +42,4 @@ public class TikTokUserInfo
LivePaused,
Live
}
}
}

View File

@@ -42,6 +42,7 @@ public interface LiveRoomInfo
*/
int getTotalViewersCount();
int getLikesCount();
long getStartTime();
boolean isAgeRestricted();
String getRoomId();
String getHostName();
@@ -49,4 +50,4 @@ public interface LiveRoomInfo
User getHostUser();
List<RankingUser> getUsersRanking();
ConnectionState getConnectionState();
}
}