UUIDGenerator

@Singleton
class UUIDGenerator

Custom UUID generator to avoid locking caused by the use of java.security.SecureRandom by the JDK UUID implementation by using better-performing UUID generators.

Constructors

Link copied to clipboard
constructor()

Functions

Link copied to clipboard
fun v4(): UUID

Generates a UUID v4 random-based UUID. This method is up to 10 times faster than UUID.randomUUID.

Link copied to clipboard
fun v7(): UUID

Generates a UUID v7 UUID with Unix epoch. This method is up to 10 times faster than UUID.randomUUID.