Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- line 231 of https://github.com/freenet/fred/blob/next/src/freenet/client/async/ClientContext.java
- 231 public void start(final BaseManifestPutter inserter) throws InsertException, PersistenceDisabledException {
- 232 if(inserter.persistent()) {
- 233 jobRunner.queue(new PersistentJob() {
- 234
- 235 @Override
- 236 public boolean run(ClientContext context) {
- 237 try {
- 238 inserter.start(context);
- 239 } catch (InsertException e) {
- 240 inserter.cb.onFailure(e, inserter);
- 241 }
- 242 return true;
- 243 }
- 244
- 245 }, NativeThread.NORM_PRIORITY);
- 246 } else {
- 247 inserter.start(this);
- 248 }
- 249 }
Advertisement
Add Comment
Please, Sign In to add comment