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

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 deleteBatchRawUnsafe(keys: Seq[ByteString]): Unit
    Definition Classes
    RocksDBColumnRawKeyValueStorage
  8. def deleteRawUnsafe(key: ByteString): Unit
    Definition Classes
    RocksDBColumnRawKeyValueStorage
  9. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  10. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  11. def exists(key: K): IOResult[Boolean]
  12. def existsRawUnsafe(key: ByteString): Boolean
    Definition Classes
    RocksDBColumnRawKeyValueStorage
  13. def existsUnsafe(key: K): Boolean
  14. def get(key: K): IOResult[V]
  15. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. def getOpt(key: K): IOResult[Option[V]]
  17. def getOptRawUnsafe(key: ByteString): Option[ByteString]
    Definition Classes
    RocksDBColumnRawKeyValueStorage
  18. def getOptUnsafe(key: K): Option[V]
  19. def getRawUnsafe(key: ByteString): ByteString
    Definition Classes
    RocksDBColumnRawKeyValueStorage
  20. def getUnsafe(key: K): V
  21. val handle: ColumnFamilyHandle
    Attributes
    protected
    Definition Classes
    RocksDBKeyValueStorageRocksDBColumn
  22. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  23. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  24. def iterate(f: (K, V) => Unit): IOResult[Unit]
  25. def iterateE(f: (K, V) => IOResult[Unit]): IOResult[Unit]
  26. def iterateRaw(f: (ByteString, ByteString) => Unit): IOResult[Unit]
  27. def iterateRawE(f: (ByteString, ByteString) => IOResult[Unit]): IOResult[Unit]
  28. implicit val keySerde: Serde[K]
  29. def multiGetRawUnsafe(keys: Seq[ByteString]): Seq[ByteString]
    Definition Classes
    RocksDBColumnRawKeyValueStorage
  30. def multiGetUnsafe(keys: Seq[K]): Seq[V]
  31. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  32. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  33. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  34. def put(key: K, value: V): IOResult[Unit]
  35. def putBatch(f: ((K, V) => Unit) => Unit): IOResult[Unit]
    Definition Classes
    KeyValueStorage
  36. def putBatchRawUnsafe(f: ((ByteString, ByteString) => Unit) => Unit): Unit
    Definition Classes
    RocksDBColumnRawKeyValueStorage
  37. def putBatchUnsafe(f: ((K, V) => Unit) => Unit): Unit
    Definition Classes
    KeyValueStorage
  38. def putRawUnsafe(key: ByteString, value: ByteString): Unit
    Definition Classes
    RocksDBColumnRawKeyValueStorage
  39. def putUnsafe(key: K, value: V): Unit
  40. val readOptions: ReadOptions
  41. def remove(key: K): IOResult[Unit]
  42. def removeBatchUnsafe(keys: Seq[K]): Unit
  43. def removeUnsafe(key: K): Unit
  44. def storageKey(key: K): ByteString
    Attributes
    protected
    Definition Classes
    KeyValueStorage
  45. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  46. def toString(): String
    Definition Classes
    AnyRef → Any
  47. def unit: Unit
    Definition Classes
    KeyValueStorageMutableKV
  48. implicit val valueSerde: Serde[V]
  49. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  50. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  51. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  52. 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