Package net.rubyeye.xmemcached.command.text

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


   * net.rubyeye.xmemcached.CommandFactory#createDeleteCommand(java.lang.String
   * , byte[], int)
   */
  public final Command createDeleteCommand(final String key,
      final byte[] keyBytes, final int time, boolean noreply) {
    return new TextDeleteCommand(key, keyBytes, time,
        new CountDownLatch(1), noreply);
  }
View Full Code Here


   * net.rubyeye.xmemcached.CommandFactory#createDeleteCommand(java.lang.String
   * , byte[], int)
   */
  public final Command createDeleteCommand(final String key,
      final byte[] keyBytes, final int time, long cas, boolean noreply) {
    return new TextDeleteCommand(key, keyBytes, time,
        new CountDownLatch(1), noreply);
  }
View Full Code Here

TOP

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

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.