Help for this page
my $clients = {}; ... $clients->{$socket_id} = $c->tx; };
foreach my $socket_id (keys %{ $clients }) { ... $clients->{$socket_id}->send({ json => { message => "hi" } }); }