Created
July 25, 2011 13:06
-
-
Save todesking/1104073 to your computer and use it in GitHub Desktop.
poor java DSL
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
addBatch(new Batch("hogehoge",new Batch.Serial() {{ | |
add(HogeJob.class); | |
add(FugaJob.class); | |
add(new Batch.Parallel() {{ | |
add(FooJob.class); | |
add(BarJob.class); | |
}}; | |
}}); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment