All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.hiczp.bilibili.api.live.socket.event.ViewerCountPackageEvent Maven / Gradle / Ivy

There is a newer version: 0.2.0
Show newest version
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