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

com.infusers.core.sse.requests.ActiveRequestCountEvent Maven / Gradle / Ivy

There is a newer version: 2025.01.0002
Show newest version
package com.infusers.core.sse.requests;

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

public class ActiveRequestCountEvent extends ApplicationEvent implements IActiveXCountEvent {
    private final long activeRequestCount;

    public ActiveRequestCountEvent(Object source, long activeRequestCount) {
        super(source);
        this.activeRequestCount = activeRequestCount;
    }

    public long getCount() {
        return activeRequestCount;
    }
}




© 2015 - 2025 Weber Informatics LLC | Privacy Policy