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

NAME

App::Chart::Gtk2::JobQueue -- queue of job objects

SYNOPSIS

 use App::Chart::Gtk2::JobQueue;
 my $queue = App::Chart::Gtk2::JobQueue->instance;
 App::Chart::Gtk2::JobQueue->enqueue ($job);

OBJECT HIERARCHY

App::Chart::Gtk2::JobQueue is a subclass of Gtk2::ListStore,

    Glib::Object
      Gtk2::ListStore
        App::Chart::Gtk2::JobQueue

DESCRIPTION

An App::Chart::Gtk2::JobQueue holds App::Chart::Gtk2::Job objects in a queue while they wait to run, and then while they run. The queue is sorted by highest priority and then by age, with model row 0 begin the next to run, or already running.

FUNCTIONS

$q = App::Chart::Gtk2::JobQueue->instance

Return the global JobQueue instance.

SEE ALSO

App::Chart::Gtk2::Job