This repository was archived by the owner on Jul 24, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
GenericJob
Mircea Anton edited this page Feb 12, 2021
·
1 revision
A GenericJob is an abstract class that is implemented by any class that we want to monitor in terms of execution time and performance.
What this class provides is a unique identifier for each job, generated via Math.random() and a duration. As such, each GenericJob will be easily identifiable and will have the execution time monitored.
The actual method by which the duration gets calculated is further implemented in subsequent nodes in the inheritance hierarchy.
-
Classes documentation
- 'App'
- 'objects.GenericJob'
- 'objects.filters.GenericFilter`
- 'objects.filters.IFilter`
- 'objects.filters.Filters`
- 'objects.image.BitmapImage'
- 'objects.image.Image'
- 'objects.image.Pixel'
- 'objects.runnables.Producer'
- 'objects.runnables.Consumer'
- 'objects.singletons.ArgParser'
- 'objects.singletons.BmpIO'
- 'objects.singletons.FilterBuilder'
- 'objects.singletons.Prompter'
- 'objects.singletons.Timer'
-
Overview of the homework requirements