removeAll method
Implementation
void removeAll(int ts) {
_cachedDataMap.forEach((k, v) {
v.isRemoved = true;
v.ts = ts;
});
(policy as PeriodEviction).stop();
}
void removeAll(int ts) {
_cachedDataMap.forEach((k, v) {
v.isRemoved = true;
v.ts = ts;
});
(policy as PeriodEviction).stop();
}