/** * Template to complete Jobs classes * * Declaration: Java - Declaration * Variables: * $CLASS$ expresion: className() defaultValue: Object * * Follow this instruction to add it to Android Studio * http://dmytrodanylyk.com/pages/blog/templates.html */ public $CLASS$() { super(new Params(Priority.HIGH).requireNetwork().groupBy("$CLASS$-job")); } @Override public void onAdded() { } @Override public void onRun() throws Throwable { } @Override protected void onCancel() { } @Override protected boolean shouldReRunOnThrowable(Throwable throwable) { return false; }