Help for this page

Select Code to Download


  1. or download this
    my %pending;
    
    ...
      delete $pending{$session_id}{$event};
      delete $pending{$session_id} unless keys %{$pending{$session_id}};
    }
    
  2. or download this
    sub some_event_handler {
      # set a timer for 10s from now, unless it's already set
    ...
      # caught the timer; clear the flag
      caught_oneshot_timer($_[STATE]);
    }