Package com.aerospike.client.command

Examples of com.aerospike.client.command.TouchCommand


   * @param policy        write configuration parameters, pass in null for defaults
   * @param key          unique record identifier
   * @throws AerospikeException  if touch fails
   */
  public final void touch(WritePolicy policy, Key key) throws AerospikeException {
    TouchCommand command = new TouchCommand(cluster, policy, key);
    command.execute();
  }
View Full Code Here


   * @param policy        write configuration parameters, pass in null for defaults
   * @param key          unique record identifier
   * @throws AerospikeException  if touch fails
   */
  public final void touch(WritePolicy policy, Key key) throws AerospikeException {
    TouchCommand command = new TouchCommand(cluster, policy, key);
    command.execute();
  }
View Full Code Here

   * @param policy        write configuration parameters, pass in null for defaults
   * @param key          unique record identifier
   * @throws AerospikeException  if touch fails
   */
  public final void touch(WritePolicy policy, Key key) throws AerospikeException {
    TouchCommand command = new TouchCommand(cluster, policy, key);
    command.execute();
  }
View Full Code Here

   */
  public final void touch(WritePolicy policy, Key key) throws AerospikeException {
    if (policy == null) {
      policy = writePolicyDefault;
    }
    TouchCommand command = new TouchCommand(cluster, policy, key);
    command.execute();
  }
View Full Code Here

   */
  public final void touch(WritePolicy policy, Key key) throws AerospikeException {
    if (policy == null) {
      policy = writePolicyDefault;
    }
    TouchCommand command = new TouchCommand(cluster, policy, key);
    command.execute();
  }
View Full Code Here

TOP

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

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.