com.fasterxml.clustermate.client.call.ReadCallParameters Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of clustermate-client Show documentation
Show all versions of clustermate-client Show documentation
Building blocks for client libraries that access
ClusterMate-based service.
package com.fasterxml.clustermate.client.call;
import com.fasterxml.clustermate.client.StoreClientConfig;
public abstract class ReadCallParameters
extends CallParameters
{
protected ReadCallParameters() { super(); }
protected ReadCallParameters(StoreClientConfig,?> config) {
super(config);
}
protected ReadCallParameters(ReadCallParameters base) {
super(base);
}
protected ReadCallParameters(ReadCallParameters base, StoreClientConfig,?> config) {
super(config);
}
}