Help for this page

Select Code to Download


  1. or download this
    
    my $clients = {};
    ...
            $clients->{$socket_id} = $c->tx;
    };
    
  2. or download this
    
    foreach my $socket_id (keys %{ $clients }) {
    ...
            $clients->{$socket_id}->send({ json => { message => "hi" } });
    }