clearCache(String) method

This API will clears entries for the URLkey passed from all the cache except the Local cache.

Syntax

public void clearCache ( String URLKey ) throws CacheException

Parameters

Exceptions

Example 1


Try{

ILogger logger = new Logger();
ICache cache =new Cache(getApplicationContext(),logger);
cache.clearCache(URLKey);

}
Catch(CacheException e){
}