Package net.spy.memcached

Examples of net.spy.memcached.OperationTimeoutException


        throw (CancellationException) e.getCause();
      } else {
        throw new RuntimeException("Exception waiting for value", e);
      }
    } catch (TimeoutException e) {
      throw new OperationTimeoutException("Timeout waiting for value", e);
    }
  }
View Full Code Here


        throw (CancellationException) e.getCause();
      } else {
        throw new RuntimeException("Exception waiting for value", e);
      }
    } catch (TimeoutException e) {
      throw new OperationTimeoutException("Timeout waiting for value", e);
    }

  }
View Full Code Here

        throw (CancellationException) e.getCause();
      } else {
        throw new RuntimeException("Exception waiting for value", e);
      }
    } catch (TimeoutException e) {
      throw new OperationTimeoutException("Timeout waiting for value: ", e);
    }
  }
View Full Code Here

        EasyMock.expect(mockMemcachedCacheEntry.toByteArray())
            .andReturn(serialized);
        EasyMock.expect(mockKeyHashingScheme.hash(url))
            .andReturn(key);
        EasyMock.expect(mockMemcachedClient.set(key, 0, serialized))
            .andThrow(new OperationTimeoutException("timed out"));

        replayMocks();
        try {
            impl.putEntry(url, value);
            fail("should have thrown exception");
View Full Code Here

    public void testThrowsIOExceptionIfMemcachedTimesOutOnGet() {
        final String url = "foo";
        final String key = "key";
        EasyMock.expect(mockKeyHashingScheme.hash(url)).andReturn(key);
        EasyMock.expect(mockMemcachedClient.get(key))
            .andThrow(new OperationTimeoutException(""));

        replayMocks();
        try {
            impl.getEntry(url);
            fail("should have thrown exception");
View Full Code Here

    public void testCacheRemoveThrowsIOExceptionOnMemcachedTimeout() {
        final String url = "foo";
        final String key = "key";
        EasyMock.expect(mockKeyHashingScheme.hash(url)).andReturn(key);
        EasyMock.expect(mockMemcachedClient.delete(key))
            .andThrow(new OperationTimeoutException(""));

        replayMocks();
        try {
            impl.removeEntry(url);
            fail("should have thrown exception");
View Full Code Here

        };

        // get empty old entry
        EasyMock.expect(mockKeyHashingScheme.hash(url)).andReturn(key).anyTimes();
        EasyMock.expect(mockMemcachedClient.gets(key))
            .andThrow(new OperationTimeoutException(""));

        replayMocks();
        try {
            impl.updateEntry(url, callback);
            fail("should have thrown exception");
View Full Code Here

    } catch (InterruptedException e) {
      throw new RuntimeException("Interrupted waiting for value", e);
    } catch (ExecutionException e) {
      throw new RuntimeException("Exception waiting for value", e);
    } catch (TimeoutException e) {
      throw new OperationTimeoutException("Timeout waiting for value", e);
    }
  }
View Full Code Here

        throw (CancellationException) e.getCause();
      } else {
        throw new RuntimeException("Exception waiting for value", e);
      }
    } catch (TimeoutException e) {
      throw new OperationTimeoutException("Timeout waiting for value", e);
    }
  }
View Full Code Here

        throw (CancellationException) e.getCause();
      } else {
        throw new RuntimeException("Exception waiting for value", e);
      }
    } catch (TimeoutException e) {
      throw new OperationTimeoutException("Timeout waiting for value", e);
    }

  }
View Full Code Here

TOP

Related Classes of net.spy.memcached.OperationTimeoutException

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.