GWT and WeakHashMap
What would be my best bet for the implementation of an alternative to Java's WeakHashMap
in GWT?
I understand there is no concept开发者_运维问答 of finalizer
in Javascript and thus the implementation of weak references
is difficult but has somebody come up with a clever solution?
Now it is possible through WeakMap (supported in all major browsers)
精彩评论