in reply to Re: Perl OO: Need a concise way of representing operations on an object
in thread Perl OO: Need a concise way of representing operations on an object
Thank you for your reply. I see what you are trying to do, but I think your use of my in lexical scope around the package means ($foo, $bar, $container) are shared between all Transform objects. This will break thread safety.
Those variables are associated with a specific call to the transform() method, which is what I tried to demonstrate with my sample code. They need to remain private to that call and its delegates, but, ideally, without all the repetitive code. (Keep in mind this example is simplified... there will be more going on like alternative traversals, building transforms on top of other transforms, and so forth.)
|
|---|
| Replies are listed 'Best First'. | |
|---|---|
|
Re^3: Perl OO: Need a concise way of representing operations on an object
by Athanasius (Archbishop) on Nov 04, 2012 at 14:45 UTC |