io.muserver.MuStats Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of mu-server Show documentation
Show all versions of mu-server Show documentation
A simple but powerful web server framework
package io.muserver;
import java.util.Set;
public interface MuStats {
long activeConnections();
long completedRequests();
long invalidHttpRequests();
long bytesSent();
long bytesRead();
Set activeRequests();
}