com.exaroton.api.ws.stream.ServerStatusStream Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of api Show documentation
Show all versions of api Show documentation
The official exaroton java library
package com.exaroton.api.ws.stream;
import com.exaroton.api.ws.WebSocketManager;
public class ServerStatusStream extends Stream {
public ServerStatusStream(WebSocketManager ws) {
super(ws);
}
@Override
protected String getName() {
return "status";
}
}