0
votes
2answers
79 views
Java: implementation of notification provider vs. hashCode-driven Map
I have implemented abstract generic provider for notification bunch of generic listeners E, descendants have to override notifyListener(E) with specific notification code. For back …
0
votes
4answers
107 views
How to store callback methods?
i am trying to store some method callbacks but referring to it will keep the bound object alive, so i tried to keep a weakref to method but that doesn't seems to be possible?
so
…
1
vote
1answer
81 views
Using Boost Python with Weak Ptrs?
Trying to set up a dependency in C++ with a parent-child relationship. The parent contains the child and the child has a weak pointer to the parent.
I would also like to be able t …
4
votes
3answers
164 views
When should weak references be used?
I recently came across a piece of Java code with WeakReferences - I had never seen them deployed although I'd come across them when they were introduced. Is this something that sho …
7
votes
5answers
308 views
Weak events in .NET?
If object A listens to an event from object B, object B will keep object A alive.
Is there a standard implementation of weak events that would prevent this?
I know WPF has some mec …
3
votes
8answers
239 views
Why are weak pointers useful?
I've been reading up on garbage collection looking for features to include in my programming language and I came across "weak pointers". From here:
Weak pointers are like poin …
2
votes
3answers
116 views
Other uses of weak references?
I know that weak references are a good candidate for memoizing potentially large sets of data, and Wikipedia's article on weak references only lists "keeping track of the current v …
0
votes
2answers
100 views
Java WeakHashMap reference not being updated
Hi,
In the code below I create a Pen object and initialize it's color to white. In the constructor of Pen, after setting the field 'penColor' to the value passed into the constru …
1
vote
2answers
71 views
Does WeakReference work with String?
In .NET 3.5, Does WeakReference work with String or shall I wrap it in a small "class" to make it work with it?
1
vote
3answers
81 views
Why does weakproxy not always preserve equivalence in python ?
MySQLDb uses weak proxy to prevent circular dependencies between cursors and connections.
But you would expect from the documentation on weakref that you could still tests for equ …
0
votes
1answer
196 views
Confused about garbage collection and events with weak references in actionscript 3.
I have a reference to an object. This object has a timer event with a weak reference. Example:
timer.addEventListener(TimerEvent.TIMER, timerHandler, false, 0, true);
Now I remo …
1
vote
2answers
257 views
Cost of using weak references in Java
Has anyone researched the runtime costs involved in creating and garbage collecting Java WeakReference objects? Are there any performance issues (e.g. contention) for multi-thread …
3
votes
4answers
334 views
C#: Notification before WeakReference is collected?
Hi,
In C#/.NET, is there any way to get a notification before the object pointed to by a weak reference is destructed? Basically, I want to allow an object to be collected, but do …
2
votes
3answers
113 views
Need Help Eliminating Weak References In My App
Hello. I am trying to resolve a memory leak(s) in my app. I've downloaded and ran RedGate's ANTS Memory Profiler 5.0 and the memory profiler tells me the leak has to do with WeakRe …
5
votes
2answers
200 views
Why does Django’s signal handling use weak references for callbacks by default?
The Django docs say this on the subject:
Note also that Django stores signal
handlers as weak references by
default, so if your handler is a local
function, it may be gar …
