Worker 2.17.1 (Default branch)


 
Thread Tools Search this Thread
Special Forums News, Links, Events and Announcements Software Releases - RSS News Worker 2.17.1 (Default branch)
# 1  
Old 12-19-2008
Worker 2.17.1 (Default branch)

ImageWorker is a file manager for the X Window System with the classical two panel interface. It features a fully graphical configuration, while still allowing manual editing of the configuration file without the need to restart Worker. Any external program can be integrated easily into the GUI using buttons, hotkeys, and file type actions. Worker uses file recognition by file content or by filename extension (or both). Different actions with completely configurable commands can be assigned to each file type.License: GNU General Public License (GPL)Changes:
This release fixes a bug in the bookmark dialog that was introduced in the previous version.Image

Image

More...
Login or Register to Ask a Question

Previous Thread | Next Thread

2 More Discussions You Might Find Interesting

1. UNIX for Advanced & Expert Users

Worker Thread

Dear Techies, I'm finding resource to learn worker thread with epoll mechanism, Can you anyone explain worker thread with your best example ? Thanks in Advance Sathya (2 Replies)
Discussion started by: sthangav
2 Replies

2. AIX

AIX wonder-worker

Hi Dears , Sometimes when I read about AIX in IBM world or when I try to see some jobs that are related to UNIX (any flavor) .....I wonder in myself if someone wanted to work in this field should know everything about script or that is not necessary , so If my friends in this fourm had a good... (3 Replies)
Discussion started by: arm
3 Replies
Login or Register to Ask a Question
TheSchwartz::Worker(3pm)				User Contributed Perl Documentation				  TheSchwartz::Worker(3pm)

NAME
TheSchwartz::Worker - superclass for defining task behavior SYNOPSIS
package MyWorker; use base qw( TheSchwartz::Worker ); sub work { my $class = shift; my TheSchwartz::Job $job = shift; print "Workin' hard or hardly workin'? Hyuk!! "; $job->completed(); } package main; my $client = TheSchwartz->new( databases => $DATABASE_INFO ); $client->can_do('MyWorker'); $client->work(); DESCRIPTION
TheSchwartz::Worker objects are the salt of the reliable job queuing earth. The behavior required to perform posted jobs are defined in subclasses of TheSchwartz::Worker. These subclasses are named for the ability required of a "TheSchwartz" client to do the job, so that the clients can dispatch automatically to the approprate worker routine. Because jobs can be performed by any machine running code for capable worker classes, "TheSchwartz::Worker"s are generally stateless. All mutable state is stored in the "TheSchwartz::Job" objects. This means all "TheSchwartz::Worker" methods are class methods, and "TheSchwartz::Worker" classes are generally never instantiated. SUBCLASSING
Define and customize how a job is performed by overriding these methods in your subclass: "$class->work( $job )" Performs the job that required ability $class. Override this method to define how to do the job you're defining. Note that will need to call "$job->completed()" or "$job->failed()" as appropriate to indicate success or failure. See TheSchwartz::Job. "$class->max_retries( $job )" Returns the number of times workers should attempt the given job. After this many tries, the job is marked as completed with errors (that is, a "TheSchwartz::ExitStatus" is recorded for it) and removed from the queue. By default, returns 0. "$class->retry_delay( $num_failures )" Returns the number of seconds after a failure workers should wait until reattempting a job that has already failed $num_failures times. By default, returns 0. "$class->keep_exit_status_for()" Returns the number of seconds to allow a "TheSchwartz::ExitStatus" record for a job performed by this worker class to exist. By default, returns 0. "$class->grab_for()" Returns the number of seconds workers of this class will claim a grabbed a job. That is, returns the length of the timeout after which other workers will decide a worker that claimed a job has crashed or faulted without marking the job failed. Jobs that are marked as failed by a worker are also marked for immediate retry after a delay indicated by "retry_delay()". USAGE
"$class->grab_job( $client )" Finds and claims a job for workers with ability $class, using "TheSchwartz" client $client. This job can then be passed to "work()" or "work_safely()" to perform it. "$class->work_safely( $job )" Performs the job associated with the worker's class name. If an error is thrown while doing the job, the job is appropriately marked as failed, unlike when calling "work()" directly. perl v5.10.0 2008-03-02 TheSchwartz::Worker(3pm)