Help for this page

Select Code to Download


  1. or download this
    120 sub _openFDCObject
    121 {
    ...
    147         $fdcObjectHash{$switch} = $fdcObject;
    148     }
    149     return %fdcObjectHash;
    
  2. or download this
    my $thread = threads->create(\$self->_openFDCObject($swObject,$switch)
    +);
    my $thread = threads->create(\$self->_openFDCObject,$swObject,$switch)
    +;
    my $thread = threads->create($self->_openFDCObject,$swObject,$switch);
    my $thread = threads->create(&_openFDCObject,$swObject,$switch);