![JAR search and dependency download from the Maven repository](/logo.png)
com.hiczp.bilibili.api.live.socket.event.ViewerCountPackageEvent Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of bilibili-api Show documentation
Show all versions of bilibili-api Show documentation
Bilibili Android client API library for Kotlin
package com.hiczp.bilibili.api.live.socket.event;
import com.hiczp.bilibili.api.live.socket.LiveClient;
public class ViewerCountPackageEvent extends Event {
private int viewerCount;
public ViewerCountPackageEvent(LiveClient source, int viewerCount) {
super(source);
this.viewerCount = viewerCount;
}
public int getViewerCount() {
return viewerCount;
}
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy