public abstract class Hash extends Object
CronTab
supports tokens like '@daily', which means "do it once a day".
Exactly which time of the day this gets scheduled is randomized --- randomized
in the sense that it's spread out when many jobs choose @daily, but it's at
the same time stable so that every job sticks to a specific time of the day
even after the configuration is updated.
Modifier and Type | Method and Description |
---|---|
static Hash |
from(String seed) |
abstract int |
next(int n)
Produces an integer in [0,n)
|
static Hash |
zero()
Creates a hash that always return 0.
|
Copyright © 2004–2022. All rights reserved.