-
Notifications
You must be signed in to change notification settings - Fork 11
Open
Description
| v_NewData.setValue(i_Value); |
class ExpireMapTest {
public static void main(String[] args) throws InterruptedException {
ExpireMap<String, String> map = new ExpireMap<>();
ExpireMap.Expire<String, String> one = map.put("1", "one", 5);
Thread.sleep(6000);
map.put("1", "two", 5);
System.out.println(map.get("1"));
}
}
Expected: two
Actual: null
Metadata
Metadata
Assignees
Labels
No labels