Skip to content
This repository has been archived by the owner on Jul 18, 2022. It is now read-only.

Job Layer

fschoeppl edited this page Apr 25, 2012 · 1 revision

The Job Layer models the requirement to schedule and execute backup jobs.

Interface

The project org.backmeup.job contains the interface JobManager with one operation to queue a new backup job. An implementation has to execute all jobs automatically which have been placed within this queue.

Implementation

The project org.backmeup.job.impl contains a simple in-memory thread based solution. Whenever a backup job will be created, it will be added to an List and a another thread will read all jobs from this List executing one after another. This implementation will be replaced by a more robust one.

Clone this wiki locally