You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
ManagedMap is a convenience java.util.Map interface over the InMemoryCache implementation. We're now using it in the EDA data service in some plugins. Because we would like to be able to completely clear those caches, we need the void clear() method to be implemented. Since it's easy, filling in boolean hasKey(key) with return get(key) != null would be nice. If other methods are easy to fill in, maybe do those too for a more complete Map implementation, but definitely those two.
The text was updated successfully, but these errors were encountered:
ManagedMap is a convenience java.util.Map interface over the InMemoryCache implementation. We're now using it in the EDA data service in some plugins. Because we would like to be able to completely clear those caches, we need the
void clear()
method to be implemented. Since it's easy, filling inboolean hasKey(key)
withreturn get(key) != null
would be nice. If other methods are easy to fill in, maybe do those too for a more complete Map implementation, but definitely those two.The text was updated successfully, but these errors were encountered: