|
|
|
|
|
by nn3
2613 days ago
|
|
Yes that's the real solution to the problem. If you have to access something in lots of code, don't make it go away asynchronously. There are many techniques to archive that. Keeping objects around in an error state is one easy way to do that. You never want memory management to be too fine grained. Even if he could implement the fine grained memory management it would likely be impossible to test all the corner cases. |
|