com.infusers.core.stats.users.ActiveUserCountEvent Maven / Gradle / Ivy
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