batch 0.9.0 batch: ^0.9.0 copied to clipboard
A lightweight and powerful Job Scheduling Framework written in Dart. With this framework, you can easily develop a job scheduling and batch program in Dart.
Release Note #
v0.9.0 #
v0.8.1 #
- Improved
README.md
.
v0.8.0 #
v0.7.1 #
- Enhanced documents on
README
.
v0.7.0 #
- Added feature to allow to execute
parallel
processing. (#25, #74,#84, #87) - Added a convenient reference to
logger_provider
. Now you can access to logging features withlog.
prefix likelog.debug('debug')
. (#73) - Added
MultiLogOutput
to allow multiple log output methods. (#82) - A specification has been added to suppress multiple launches of batch applications within the same thread. (#81)
v0.6.0 #
- Added the feature to log notifications at application startup when there are library updates. (#32)
- Changed the log level of the system log regarding application shutdown from
info
towarn
. (#45) - Standardized notation regarding licenses. (#44)
- Command line arguments can now be easily passed to batch applications. Command line arguments can be used throughout the framework lifecycle as
SharedParameters
. (#13)
v0.5.1 #
- Improved coloring process for log output. Added
logColor
field toLogOutput
and modified the classConsoleLogOutput
to get the console color. (#31)
v0.5.0 #
New Features #
- Added the feature to specify any exception type before application execution and skip exceptions that occur during application processing. Only classes that inherit from
Exception
are eligible; classes that inherit fromError
are not eligible for this retry feature. (#12) - Added the feature to specify any exception type before application execution and retry when exception occurs during application processing. Only classes that inherit from
Exception
are eligible; classes that inherit fromError
are not eligible for this skip feature. (#20) - Added convenient method
shutdown()
to shutdown application inStep
(#17).
Improvements #
v0.4.0 #
New Features #
- Added
onStarted
,onSucceeded
,onError
andonCompleted
callbacks forJob
,Step
andTask
. - Added feature to specify the color of the message when logging out with
LogColor
andConsoleColor
. - Improved log message from framework.
- Added convenient method
shutdown()
to shutdown the application fromTask
.
Destructive Changes #
- Changed to define
Precondition
as an anonymous function.
v0.3.0 #
New Features #
- Added
Precondition
to check the preconditions for executingJob
,Step
andTask
. - Conditional branching is now possible for the all layers (
Job
/Step
/Task
) based onBranchStatus
by using thebranchOnSucceeded
,branchOnFailed
andbranchOnCompleted
. - Due to the feature to create branches in
Job
, the schedule argument of theJob
object is no longer required. However, be sure to set up a schedule for the rootJob
s.
Destructive Changes #
- Changed the type of the argument when specifying
Job
scheduling. Now you can useCronParser
to specify the schedule in Cron format.
v0.2.1 #
v0.2.0 #
New Features #
- Added logging feature. Some logs are automatically output to the console during batch processing, but you can output logs at any log level by using the various methods for log output.
- Enabled parameter exchange between tasks in the same step.
- Added the concept of SharedParameters, which are shared by the entire batch application.
Destructive Changes #
- Refactored the structure, made
JobLauncher
private and releasedBatchApplication
as new entry point. - Added ExecutionContext as an argument to the execute method of the Task class.
v0.1.0 #
- Improved documents.
- Wrapped the return value of execute with
Future
to allow asynchronous processing inTask
. Asynchronous processing defined inTask
is safely controlled by thebatch
library, so you don't need to be aware of it when runningJobLauncher
.
v0.0.1 #
- First Release!