class RocksDBKeyValueStorage[K, V] extends KeyValueStorage[K, V] with RocksDBColumn

Linear Supertypes
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. RocksDBKeyValueStorage
  2. RocksDBColumn
  3. KeyValueStorage
  4. MutableKV
  5. ReadableKV
  6. RawKeyValueStorage
  7. AbstractKeyValueStorage
  8. AnyRef
  9. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new RocksDBKeyValueStorage(storage: RocksDBSource, cf: ColumnFamily, writeOptions: WriteOptions, readOptions: ReadOptions)(implicit keySerde: Serde[K], valueSerde: Serde[V])

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  5. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @native() @HotSpotIntrinsicCandidate()
  6. val db: RocksDB
    Attributes
    protected
    Definition Classes
    RocksDBKeyValueStorageRocksDBColumn
  7. def deleteRawUnsafe(key: ByteString): Unit
    Definition Classes
    RocksDBColumnRawKeyValueStorage
  8. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  9. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  10. def exists(key: K): IOResult[Boolean]
  11. def existsRawUnsafe(key: ByteString): Boolean
    Definition Classes
    RocksDBColumnRawKeyValueStorage
  12. def existsUnsafe(key: K): Boolean
  13. def get(key: K): IOResult[V]
  14. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  15. def getOpt(key: K): IOResult[Option[V]]
  16. def getOptRawUnsafe(key: ByteString): Option[ByteString]
    Definition Classes
    RocksDBColumnRawKeyValueStorage
  17. def getOptUnsafe(key: K): Option[V]
  18. def getRawUnsafe(key: ByteString): ByteString
    Definition Classes
    RocksDBColumnRawKeyValueStorage
  19. def getUnsafe(key: K): V
  20. val handle: ColumnFamilyHandle
    Attributes
    protected
    Definition Classes
    RocksDBKeyValueStorageRocksDBColumn
  21. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  22. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  23. def iterate(f: (K, V) => Unit): IOResult[Unit]
  24. def iterateE(f: (K, V) => IOResult[Unit]): IOResult[Unit]
  25. implicit val keySerde: Serde[K]
  26. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  27. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  28. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  29. def put(key: K, value: V): IOResult[Unit]
  30. def putBatch(f: ((K, V) => Unit) => Unit): IOResult[Unit]
    Definition Classes
    KeyValueStorage
  31. def putBatchRawUnsafe(f: ((ByteString, ByteString) => Unit) => Unit): Unit
    Definition Classes
    RocksDBColumnRawKeyValueStorage
  32. def putBatchUnsafe(f: ((K, V) => Unit) => Unit): Unit
    Definition Classes
    KeyValueStorage
  33. def putRawUnsafe(key: ByteString, value: ByteString): Unit
    Definition Classes
    RocksDBColumnRawKeyValueStorage
  34. def putUnsafe(key: K, value: V): Unit
  35. val readOptions: ReadOptions
  36. def remove(key: K): IOResult[Unit]
  37. def removeUnsafe(key: K): Unit
  38. def storageKey(key: K): ByteString
    Attributes
    protected
    Definition Classes
    KeyValueStorage
  39. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  40. def toString(): String
    Definition Classes
    AnyRef → Any
  41. def unit: Unit
    Definition Classes
    KeyValueStorageMutableKV
  42. implicit val valueSerde: Serde[V]
  43. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  44. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  45. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  46. val writeOptions: WriteOptions

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

Inherited from RocksDBColumn

Inherited from KeyValueStorage[K, V]

Inherited from MutableKV[K, V, Unit]

Inherited from ReadableKV[K, V]

Inherited from RawKeyValueStorage

Inherited from AbstractKeyValueStorage[K, V]

Inherited from AnyRef

Inherited from Any

Ungrouped