I2P Address: [http://git.idk.i2p]

Skip to content
Snippets Groups Projects
Commit bbd34be2 authored by zzz's avatar zzz
Browse files

javadoc

parent cc7a8028
No related branches found
No related tags found
No related merge requests found
......@@ -62,6 +62,10 @@ public abstract class JobImpl implements Job {
public void madeReady() { _madeReadyOn = _context.clock().now(); }
public void dropped() {}
/**
* Warning - only call this from runJob() or if Job is not already queued,
* or else it gets the job queue out of order.
*/
protected void requeue(long delayMs) {
getTiming().setStartAfter(_context.clock().now() + delayMs);
_context.jobQueue().addJob(this);
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment