io.tiler.internal.SocketState Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of tiler Show documentation
Show all versions of tiler Show documentation
Plugable dashboard framework
package io.tiler.internal;
import io.tiler.internal.queries.Query;
import java.util.HashMap;
public class SocketState {
private HashMap queries = new HashMap<>();
public HashMap queries() {
return queries;
}
}