Help for this page

Select Code to Download


  1. or download this
    sub websockets_handler {
        my $self = shift;
    ...
          $self->app->log->debug("WebSocket closed with status $code.");
        });
    }
    
  2. or download this
      my $cb = $self->stash('logchanvar')->on(message => sub {
            my ($log, $level, @lines) = @_;
    
            $self->send({ text => $lines[0] });
    ...