interface VerifiableClass can verify its status and data integrity: collections, Stores...
| verify |
abstract fun verify(): Unit |
| BTreeMap |
class BTreeMap<K, V> : Verifiable, Closeable, Serializable, ConcurrencyAware, ConcurrentNavigableMap<K, V>, ConcurrentNavigableMapExtra<K, V>A scalable concurrent {@link ConcurrentNavigableMap} implementation. The map is sorted according to the {@linkplain Comparable natural ordering} of its keys, or by a {@link Comparator} provided at map creation time. |
| HTreeMap |
class HTreeMap<K, V> : ConcurrentMap<K, V>, ConcurrencyAware, MapExtra<K, V>, Verifiable, CloseableConcurrent HashMap which uses IndexTree for hash table |
| QueueLong |
class QueueLong : VerifiableFIFO Queue with option to remove element from middle |
| Store |
interface Store : StoreImmutable, Verifiable, ConcurrencyAwareStores records, mutable version |