Por aquí tengo la revista Linux Journal de julio de 2011, donde viene un artículo titulado "
Watch Your Processess Remotely with Mojolicious and a Smartphone" donde explica cómo hacer aplicaciones
websocket basadas en Mojolicious::Lite y Mojo::IOLoop y un poco de JQuery para hacer peticiones Ajax, para desplegar aplicaciones que se están ejecutando en el servidor, en la pantalla del teléfono.
El código
está disponible.
Using perl Syntax Highlighting
websocket $my_url . '-ws' => sub {
my $self = shift;
my $send_data;
$send_data = sub {
# Grab new lines from our function
my $new_lines = updatePage();
# If new lines are available $new_lines will exist.
if ($new_lines) {
# Send content to the client
$self->send_message($new_lines);
# Do this all again in 1 second
$loop->timer( 1, $send_data );
}
};
# We need this to start our loop for the first time
$send_data->(); # Run code.
};
Coloreado en 0.003 segundos, usando
GeSHi 1.0.8.4
Y más referencias...
Si quieres una copia del artículo, mándame un privado.