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

com.infusers.core.stats.users.ActiveUserCountEvent Maven / Gradle / Ivy

There is a newer version: 2024.12.0008
Show newest version
package com.infusers.core.stats.users;

import org.springframework.context.ApplicationEvent;
import com.infusers.core.sse.IActiveXCountEvent;

public class ActiveUserCountEvent extends ApplicationEvent implements IActiveXCountEvent {
    private final long activeUserCount;

    public ActiveUserCountEvent(Object source, long activeUserCount) {
        super(source);
        this.activeUserCount = activeUserCount;
    }

    public long getCount() {
        return activeUserCount;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy