Help for this page

Select Code to Download


  1. or download this
    sub retrieve
    {
    ...
        }
        $message->close if $message;
    }
    
  2. or download this
    sub retrieve
    {
    ...
       $sent = thaw($sent);
       $message->close if $message->connected;
       return $$sent;
    
  3. or download this
    sub retrieve
    {
    ...
       $connection->close if $connection->connected;
       return $$sent;
    }