| Interface | Description |
|---|---|
| IdGenerator<T> |
Strategy for generation request identificators
|
| Class | Description |
|---|---|
| AtomicLongIdGenerator |
Return id from an atomic long counter
It's the most reliable and straightforward way to generate identifiers
|
| CurrentTimeIdGenerator |
Return current time as id.
|
| SecureRandomIntIdGenerator |
Generates secure random positive integers under limit
By default limit is 65536
|
| SecureRandomLongIdGenerator |
Generate secure random positive long identifiers
|
| SecureRandomStringIdGenerator |
Generate secure random strings consisting of HEX symbols with length of 40 characters
|
Copyright © 2018. All rights reserved.