The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Parallel::Scoreboard::PSGI::App::JSON - a simple PSGI app for monitoring the output of Parallel::Scoreboard in JSON format

SYNOPSIS

  use Parallel::Scoreboard;
  use Parallel::Scoreboard::PSGI::App;
  
  my $scoreboard = Parallel::Scoreboard->new(
      base_dir => '/tmp/my_scorebooard',
  );
  # return psgi app
  Parallel::Scoreboard::PSGI::App->new(
      scoreboard => $scoreboard,
  )->to_app;

SEE ALSO

Parallel::Scoreboard Parallel::Scoreboard::PSGI::App::JSON PSGI

AUTHOR

Kazuho Oku <kazuhooku gmail.com>

LICENSE

This program is free software, you can redistribute it and/or modify it under the same terms as Perl 5.10.