com.exaroton.api.ws.stream.TickStream 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;
import com.exaroton.api.ws.subscriber.TickSubscriber;
public class TickStream extends Stream {
public TickStream(WebSocketManager ws) {
super(ws);
}
@Override
protected String getName() {
return "tick";
}
}