com.exaroton.api.ws.stream.HeapStream 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 HeapStream extends Stream {
public HeapStream(WebSocketManager ws) {
super(ws);
}
@Override
protected String getName() {
return "heap";
}
}