(int i)
| 78 | public static final StableRandom randSeed = new StableRandom(timeNow); |
| 79 | |
| 80 | public Future<?> submitTasks(int i) { |
| 81 | var seed = randSeed.nextLong(); |
| 82 | //logger.info("submitTasks: seed={}", s); |
| 83 | return Task.runUnsafe(app.Zeze.newProcedure(() -> runJobs(seed, null), "runJob")); |
| 84 | } |
| 85 | |
| 86 | public static StableRandom getRandom() { |
| 87 | return StableRandom.local(); |
no test coverage detected