Uses of Class
com.fasterxml.uuid.UUIDTimer
Packages that use UUIDTimer
Package
Description
Package that contains classes that define Java UUID Generator API.
Package that contains actual Java UUID Generator implementation classes,
including generators for different UUID types.
-
Uses of UUIDTimer in com.fasterxml.uuid
Fields in com.fasterxml.uuid declared as UUIDTimerModifier and TypeFieldDescriptionprotected static UUIDTimerGenerators._sharedTimerIf no explicit timer (and synchronizer it implicitly uses) is specified, we will create and use a single lazily-constructed timer, which uses in-JVM synchronization but no external file-based syncing.Methods in com.fasterxml.uuid with parameters of type UUIDTimerModifier and TypeMethodDescriptionstatic TimeBasedGeneratorGenerators.timeBasedGenerator(EthernetAddress ethernetAddress, UUIDTimer timer) Factory method for constructing UUID generator that generates UUID using version 1 (time+location based), using specified Ethernet address as the location part of UUID, and specifiedUUIDTimerinstance (which includes embedded synchronizer that defines synchronization behavior).static TimeBasedReorderedGeneratorGenerators.timeBasedReorderedGenerator(EthernetAddress ethernetAddress, UUIDTimer timer) Factory method for constructing UUID generator that generates UUID using version 6 (time+location based, reordered for DB locality), using specified Ethernet address as the location part of UUID, and specifiedUUIDTimerinstance (which includes embedded synchronizer that defines synchronization behavior). -
Uses of UUIDTimer in com.fasterxml.uuid.impl
Fields in com.fasterxml.uuid.impl declared as UUIDTimerModifier and TypeFieldDescriptionprotected final UUIDTimerTimeBasedGenerator._timerObject used for synchronizing access to timestamps, to guarantee that timestamps produced by this generator are unique and monotonically increasings.protected final UUIDTimerTimeBasedReorderedGenerator._timerObject used for synchronizing access to timestamps, to guarantee that timestamps produced by this generator are unique and monotonically increasings.Constructors in com.fasterxml.uuid.impl with parameters of type UUIDTimerModifierConstructorDescriptionTimeBasedGenerator(EthernetAddress ethAddr, UUIDTimer timer) TimeBasedReorderedGenerator(EthernetAddress ethAddr, UUIDTimer timer)