Guest User

Untitled

a guest
Nov 17th, 2018
83
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 0.20 KB | None | 0 0
  1. interface BatchQueue extends Queue {
  2. void setBatchSize(int batchSize);
  3. void deleteAll() default {
  4. setBatchSize(100);
  5. Queue.super.deleteAll();
  6. }
  7. }
Add Comment
Please, Sign In to add comment