Examples of ClearCacheUrl


Examples of com.github.mrcritical.ironcache.internal.model.requests.ClearCacheUrl

  @Override
  public void clearCache(final String name) {
    try {

      final CacheResponse response = objectMapper.readValue(
          requestFactory.buildPostRequest(new ClearCacheUrl(hostName, projectId, name), new EmptyContent())
              .execute().getContent(), CacheResponse.class);

      validate(response, "cleared");

      log.debug("Successful request to clear to cache {}", name);
View Full Code Here
TOP
Copyright © 2018 www.massapi.com. 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.