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
New runtimes work differently and are not well tested yet for memory leaks. We are working on fixing issues anything we find.
When a java object is finally freed in Java, we notify the JS side to free the JS counterpart. At this time, the Java object is held weakly in Java too using a WeakReference. While the Java object is weakly held, the WeakReference is strongly kept in a HashMap never getting removed. In this PR we release the WeakReferences too on GC event ensuring that all memory is reclaimed. Fixed in 5e48302
Investigate Java Interface Implementation leaking on JS Side
The text was updated successfully, but these errors were encountered:
New runtimes work differently and are not well tested yet for memory leaks. We are working on fixing issues anything we find.
The text was updated successfully, but these errors were encountered: