Help for this page

Select Code to Download


  1. or download this
      sub agent_handler {
        # ...
    ...
        $wheel->put("Greetings from MyServer version 1.0");
        # ...
      }
    
  2. or download this
      sub agent_handler {
        # ...
    ...
        delete $heap->{wheel}->{$wheel_id};
        delete $heap->{socket}->{$wheel_id};
      }
    
  3. or download this
      $heap->{$wheel->ID} =
        { wheel  => $wheel,
          socket => $socket,
          foo    => $foo,
        };
    
  4. or download this
      delete $heap->{$wheel_id};