Blocking and simultaneously releasing a variable number of threads in Java Why would I still need a timestamp? According to the Javadocs for awaitAdvance, it waits until the phase is not equal to the given phase... so it's doing a not-equal check, not a greater-than check. Thus, wraparound shouldn't break anything, if that's what you're referring to, right?
Jul 7
comment
Blocking and simultaneously releasing a variable number of threads in Java Neat- this solution would let me avoid System.currentTimeMillis entirely and just use the phase number, which seems cleaner, in that I didn't actually care when the flush occurred, just that it occurred after some other time.