Package com.aerospike.client.command

Source Code of com.aerospike.client.command.DeleteCommand

/*
* Aerospike Client - Java Library
*
* Copyright 2013 by Aerospike, Inc. All rights reserved.
*
* Availability of this source code to partners and customers includes
* redistribution rights covered by individual contract. Please check your
* contract for exact rights and responsibilities.
*/
package com.aerospike.client.command;

import java.io.IOException;
import java.io.InputStream;

import com.aerospike.client.AerospikeException;
import com.aerospike.client.Key;
import com.aerospike.client.ResultCode;
import com.aerospike.client.cluster.Cluster;

public final class DeleteCommand extends SingleCommand {
 
  private int resultCode;

  public DeleteCommand(Cluster cluster, Key key) {
    super(cluster, key);
  }
 
  protected void parseResult(InputStream is) throws AerospikeException, IOException {
    // Read header.   
    readFully(is, receiveBuffer, MSG_TOTAL_HEADER_SIZE);
 
    long sz = Buffer.bytesToLong(receiveBuffer, 0);
    byte headerLength = receiveBuffer[8];
    resultCode = receiveBuffer[13] & 0xFF;
    int receiveSize = ((int) (sz & 0xFFFFFFFFFFFFL)) - headerLength;
       
    // Read remaining message bytes.
        if (receiveSize > 0) {
          resizeReceiveBuffer(receiveSize);
        readFully(is, receiveBuffer, receiveSize);
        }
       
      if (resultCode != 0 && resultCode != ResultCode.KEY_NOT_FOUND_ERROR) {
        throw new AerospikeException(resultCode);         
      }         
  }
 
  public int getResultCode() {
    return resultCode;
  }
}
TOP

Related Classes of com.aerospike.client.command.DeleteCommand

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.