Handle launch to external bank application.

This commit is contained in:
Alex Hart
2023-10-23 08:26:31 -04:00
committed by GitHub
parent e63137d293
commit d497ed4195
35 changed files with 788 additions and 89 deletions

View File

@@ -499,6 +499,18 @@ public class JobManager implements ConstraintObserver.Notifier {
return this;
}
public Chain after(@NonNull Job job) {
return after(Collections.singletonList(job));
}
public Chain after(@NonNull List<? extends Job> jobs) {
if (!jobs.isEmpty()) {
this.jobs.add(0, new ArrayList<>(jobs));
}
return this;
}
public void enqueue() {
jobManager.enqueueChain(this);
}