]> source.dussan.org Git - vaadin-framework.git/commitdiff
Clear out ClientCache when UI is detached to prevent a minor memory leak (#12220)
authorAnna Koskinen <Ansku@users.noreply.github.com>
Fri, 5 Mar 2021 10:39:09 +0000 (12:39 +0200)
committerGitHub <noreply@github.com>
Fri, 5 Mar 2021 10:39:09 +0000 (12:39 +0200)
* Clear out ClientCache when UI is detached to prevent a minor memory leak (#12199)

* Clear out ClientCache when UI is detached to prevent a minor memory leak

Implemented with a listener rather than direct call from UI.detach() in
order to avoid new public API, since the whole feature has been marked
for removal. This doesn't yet prevent the cache or the type map from
getting slightly bloated during the UI's lifetime.

See: #3705

server/src/main/java/com/vaadin/server/LegacyCommunicationManager.java

index 5cb90b428ababf5194a0c3c0ad3cfe3ceba6ff17..10ccb7726de0b58347776ac613b4051e912445d4 100644 (file)
@@ -232,10 +232,25 @@ public class LegacyCommunicationManager implements Serializable {
         if (cache == null) {
             cache = new ClientCache();
             uiToClientCache.put(uiId, cache);
+            uI.addDetachListener(event -> removeClientCache(uI));
         }
         return cache;
     }
 
+    /**
+     * Clear out client cache for the given UI. This should be called when the
+     * UI is detached and the cache becomes obsolete.
+     *
+     * @param uI
+     *            the UI whose client cache should be removed
+     * @deprecated because this cleanup is only needed for a deprecated feature
+     */
+    @Deprecated
+    private void removeClientCache(UI uI) {
+        Integer uiId = Integer.valueOf(uI.getUIId());
+        uiToClientCache.remove(uiId);
+    }
+
     /**
      * Checks if the connector is visible in context. For Components,
      * {@link #isComponentVisibleToClient(Component)} is used. For other types