All Downloads are FREE. Search and download functionalities are using the official Maven repository.

com.fasterxml.clustermate.client.call.ReadCallParameters Maven / Gradle / Ivy

There is a newer version: 0.10.5
Show newest version
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);
    }
}




© 2015 - 2024 Weber Informatics LLC | Privacy Policy