deleteEntry(String) method

This API is will cache Entry associated with HTTP DELETE which deletes the existing resource of a collection this entry will be marked as 'Deleted' in Local Cache.

Syntax

public void deleteEntry ( String entryID ) throws CacheException

Parameters

Exceptions

Example 1


Try{

ILogger logger = new  Logger();
ICache cache =new Cache(getApplicationContext(),logger);;
cache.deleteEntry(EntryID);

}
Catch(CacheException e){
}