Author: toad
Date: 2008-07-04 13:02:42 +0000 (Fri, 04 Jul 2008)
New Revision: 20969
Modified:
branches/db4o/freenet/src/freenet/client/async/ClientRequestScheduler.java
Log:
Boost priority of success callback so that it gets handled sooner than all the
failures.
Modified:
branches/db4o/freenet/src/freenet/client/async/ClientRequestScheduler.java
===================================================================
--- branches/db4o/freenet/src/freenet/client/async/ClientRequestScheduler.java
2008-07-04 13:01:10 UTC (rev 20968)
+++ branches/db4o/freenet/src/freenet/client/async/ClientRequestScheduler.java
2008-07-04 13:02:42 UTC (rev 20969)
@@ -856,7 +856,7 @@
}
}
- }, NativeThread.NORM_PRIORITY, false);
+ }, NativeThread.NORM_PRIORITY+1, false);
}
public FECQueue getFECQueue() {