Package com.trifork.riak.RPB

Examples of com.trifork.riak.RPB.RpbSetClientIdReq


  }

  // /////////////////////

  public void setClientID(ByteString id) throws IOException {
    RpbSetClientIdReq req = RPB.RpbSetClientIdReq.newBuilder().setClientId(
        id).build();
    RiakConnection c = getConnection();
    try {
      c.send(MSG_SetClientIdReq, req);
      c.receive_code(MSG_SetClientIdResp);
View Full Code Here

TOP

Related Classes of com.trifork.riak.RPB.RpbSetClientIdReq

Copyright © 2018 www.massapicom. All rights reserved.
All source code are property of their respective owners. Java is a trademark of Sun Microsystems, Inc and owned by ORACLE Inc. Contact coftware#gmail.com.