On 2013-04-23, at 05:17, "Sean P. DeNigris" <[email protected]> wrote:

> If my object is using a process internally that should run only as long as
> the object is around, how do I do that? I searched the ml's for
> "Finalization", but couldn't quite make sense of the process.

If your process refers to this Object (e.g. methods of said Object are 
evaluated in a this thread) the thing you want to do is not possible.

Processes are root objects for the GarbageCollector hence all the objects
in its execution stack won't get garbage collected.

Otherwise check WeakRegistry

Reply via email to