|
NAMEAmon2::Plugin::Web::WebSocket - [EXPERIMENTAL]WebSocket plugin for Amon2SYNOPSISuse Amon2::Lite; any '/echo' => sub { my ($c) = @_; return $c->websocket(sub { my $ws = shift; $ws->on_receive_message(sub { my ($c, $message) = @_; $ws->send_message("YAY: " . $message); }); }); }; DESCRIPTIONThis plugin provides WebSocket feature for Amon2.You can use WebSocket very easily with Amon2. This plugin depended on AnyEvent. You can use this module on Twiggy only. METHODS
SEE ALSOTwiggy, AnyEvent
Visit the GSP FreeBSD Man Page Interface. |