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

com.hiczp.bilibili.api.live.socket.event.ReceivePackageEvent 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 abstract class ReceivePackageEvent extends Event {
    protected T entity;

    ReceivePackageEvent(LiveClient source, T entity) {
        super(source);
        this.entity = entity;
    }

    public T getEntity() {
        return entity;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy