I a module written in an object orient syntax that does this:

sub new {

        my $class = shift;
        my $this  = {};
        bless( $this, $class );
        $this->_init( @_ );
        
        return $this;
}

Is $this considered Global (i.e. am I going to run into the scoping issues
of $this->{data} persisting for multiple users?)

Boysenberry

boysenberrys.com | habitatlife.com | selfgnosis.com

Reply via email to