SequentialIdGenerator.fromUUID constructor

SequentialIdGenerator.fromUUID()

Initializes sequential generator with UUID v4 prefix https://en.wikipedia.org/wiki/Universally_unique_identifier#Version_4_.28random.29 These are probably unique (you need to generate 2^36 to have clash with 4*10^-16 probability) so it can be freely used anywhere across the app advantage: very likely to be unique without extra restrictions disadvantage: long ids

Implementation

SequentialIdGenerator.fromUUID() : this(_createUuid());