mergeEntries(IODataFeed, String) method

Merge APIS are to be invoked after doing a HTTP GET after modification or a set of modifications.

Syntax

public void mergeEntries (
    IODataFeed Feed,
    String URLKey
) throws CacheException

Parameters

Exceptions

Remarks

Merge all the entries provided into the Server cache for the respective urlkey.

Example 1


Try{

ILogger logger = new Logger();
ICache cache =new Cache(getApplicationContext(),logger);
IODataFeed feed = parser.parseODataFeed(responseEntity, collectionID, schema);
cache.mergeEntries(feed, EntryURL);

}
Catch(CacheException e){
}