Java Utililty Methods ThreadLocalRandom

List of utility methods to do ThreadLocalRandom

Description

The list of methods to do ThreadLocalRandom are organized into topic(s).

Method

longtimestampToMicros(final long timestampMillis)
Converts a millisecond timestamp to micros by adding a random number of microseconds.
return timestampMillis * 1000L + ThreadLocalRandom.current().nextInt(1000);