com.basho.riak.pbc.IRequestMeta Maven / Gradle / Ivy
Go to download
Show more of this group Show more artifacts with this name
Show all versions of riak-client Show documentation
Show all versions of riak-client Show documentation
HttpClient-based client for Riak
package com.basho.riak.pbc;
import com.google.protobuf.ByteString;
/**
* PBC model of request meta data (w, dw, content-type, returnBody?
)
*/
public interface IRequestMeta {
public abstract void preparePut(com.basho.riak.protobuf.RiakKvPB.RpbPutReq.Builder builder);
public abstract IRequestMeta returnBody(boolean ret);
public abstract IRequestMeta w(int w);
public abstract IRequestMeta dw(int dw);
public abstract IRequestMeta contentType(String contentType);
public abstract ByteString getContentType();
}
© 2015 - 2025 Weber Informatics LLC | Privacy Policy