Package org.tarantool.core.cmd

Examples of org.tarantool.core.cmd.Delete


  /** {@inheritDoc} */
  @Override
  public Integer delete(int space, Tuple tuple) {
    try {
      Response response = transport.execute(new Delete(id.incrementAndGet(), tuple.pack()).space(space));
      return response.getCount();
    } finally {
      returnConnection();
    }
  }
View Full Code Here


  /** {@inheritDoc} */
  @Override
  public Tuple deleteAndGet(int space, Tuple tuple) {
    try {
      Response response = transport.execute(new Delete(id.incrementAndGet(), tuple.pack()).space(space).flags(Flags.RETURN_TUPLE));
      return response.readSingleTuple();
    } finally {
      returnConnection();
    }
  }
View Full Code Here

TOP

Related Classes of org.tarantool.core.cmd.Delete

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.