Package com.shop.cache.api.client.io

Examples of com.shop.cache.api.client.io.SCClient


  }

  @Override
  public void remove(String key) throws Exception
  {
    SCClient       client = getClient();
    try
    {
      if ( client != null )
      {
        client.remove(key);
      }
    }
    finally
    {
      releaseClient(client);
View Full Code Here

TOP

Related Classes of com.shop.cache.api.client.io.SCClient

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.