final RecordStore recordStore = mapService.getMapServiceContext().getExistingRecordStore(getPartitionId(), name);
//if there is no recordStore, then there is nothing to evict.
if (recordStore == null) {
return;
}
recordStore.evictAll(true);
}
@Override
public String toString() {
return "EvictAllBackupOperation{}";