Skip to content

Instantly share code, notes, and snippets.

@todesking
Created July 25, 2011 13:06
Show Gist options
  • Save todesking/1104073 to your computer and use it in GitHub Desktop.
Save todesking/1104073 to your computer and use it in GitHub Desktop.
poor java DSL
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