Package net.spy.memcached.ops

Examples of net.spy.memcached.ops.DeleteConfigOperation


   */
  public OperationFuture<Boolean> deleteConfig(InetSocketAddress addr, ConfigurationType configurationType) {
    final CountDownLatch latch = new CountDownLatch(1);
    final OperationFuture<Boolean> rv = new OperationFuture<Boolean>(configurationType.getValue(),
        latch, operationTimeout);
    DeleteConfigOperation op = opFact.deleteConfig(configurationType, new OperationCallback() {
      public void receivedStatus(OperationStatus s) {
        rv.set(s.isSuccess(), s);
      }

      public void complete() {
View Full Code Here

TOP

Related Classes of net.spy.memcached.ops.DeleteConfigOperation

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.