jdash.client.cache.WriteOnlyCache Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of jdash-client Show documentation
Show all versions of jdash-client Show documentation
The HTTP client used to pull data from Geometry Dash servers
The newest version!
package jdash.client.cache;
import jdash.client.request.GDRequest;
import java.util.Optional;
class WriteOnlyCache implements GDCache {
private final GDCache delegate;
WriteOnlyCache(GDCache delegate) {
this.delegate = delegate;
}
@Override
public Optional
© 2015 - 2025 Weber Informatics LLC | Privacy Policy