Package com.aerospike.client.command

Examples of com.aerospike.client.command.OperateCommand.execute()


   * @throws AerospikeException  if command fails
   */
  public final Record operate(WritePolicy policy, Key key, Operation... operations)
    throws AerospikeException {   
    OperateCommand command = new OperateCommand(cluster, policy, key, operations);
    command.execute();
    return command.getRecord();
  }

  //-------------------------------------------------------
  // Scan Operations
View Full Code Here


   * @throws AerospikeException  if command fails
   */
  public final Record operate(WritePolicy policy, Key key, Operation... operations)
    throws AerospikeException {   
    OperateCommand command = new OperateCommand(cluster, policy, key, operations);
    command.execute();
    return command.getRecord();
  }

  //-------------------------------------------------------
  // Scan Operations
View Full Code Here

   * @throws AerospikeException  if command fails
   */
  public final Record operate(WritePolicy policy, Key key, Operation... operations)
    throws AerospikeException {   
    OperateCommand command = new OperateCommand(cluster, policy, key, operations);
    command.execute();
    return command.getRecord();
  }

  //-------------------------------------------------------
  // Scan Operations
View Full Code Here

    throws AerospikeException {   
    if (policy == null) {
      policy = writePolicyDefault;
    }
    OperateCommand command = new OperateCommand(cluster, policy, key, operations);
    command.execute();
    return command.getRecord();
  }

  //-------------------------------------------------------
  // Scan Operations
View Full Code Here

    throws AerospikeException {   
    if (policy == null) {
      policy = writePolicyDefault;
    }
    OperateCommand command = new OperateCommand(cluster, policy, key, operations);
    command.execute();
    return command.getRecord();
  }

  //-------------------------------------------------------
  // Scan Operations
View Full Code Here

TOP
Copyright © 2018 www.massapi.com. 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.