The idea is to implement a class that gets a list of [arrays, Thread::Conveyor queues and other stuff] in a TIEHASH constructor,
use AbstractHash;
tie(%DATA, 'AbstractHash', \@a1, \@a2, \$tcq);
What is a correct way to pass object references (like mentioned Thread::Conveyor objects) thus array references into constructor, so it can access the objects? Any cases when a passed object should be blessed?
As far as I can tell, objects are not objects unless they're
bless
-ed.That said, the constructor argument would simply be an arrayref of
Thread::Conveyor
objects:where the constructor is defined in the
AbstractHash
package: