Package net.rubyeye.xmemcached.command.text

Examples of net.rubyeye.xmemcached.command.text.TextIncrDecrCommand


   * .String, byte[], int, net.rubyeye.xmemcached.command.CommandType)
   */
  public final Command createIncrDecrCommand(final String key,
      final byte[] keyBytes, final long amount, long initial,
      int exptime, CommandType cmdType, boolean noreply) {
    return new TextIncrDecrCommand(key, keyBytes, cmdType,
        new CountDownLatch(1), amount, initial, noreply);
  }
View Full Code Here


   * .String, byte[], int, net.rubyeye.xmemcached.command.CommandType)
   */
  public final Command createIncrDecrCommand(final String key,
      final byte[] keyBytes, final long amount, long initial,
      int exptime, CommandType cmdType, boolean noreply) {
    return new TextIncrDecrCommand(key, keyBytes, cmdType,
        new CountDownLatch(1), amount, initial, noreply);
  }
View Full Code Here

TOP

Related Classes of net.rubyeye.xmemcached.command.text.TextIncrDecrCommand

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.