t

org.alephium.io

KeyValueStorage

trait KeyValueStorage[K, V] extends AbstractKeyValueStorage[K, V] with RawKeyValueStorage with MutableKV[K, V, Unit]

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

Abstract Value Members

  1. abstract def deleteBatchRawUnsafe(keys: Seq[ByteString]): Unit
    Definition Classes
    RawKeyValueStorage
  2. abstract def deleteRawUnsafe(key: ByteString): Unit
    Definition Classes
    RawKeyValueStorage
  3. abstract def existsRawUnsafe(key: ByteString): Boolean
    Definition Classes
    RawKeyValueStorage
  4. abstract def getOptRawUnsafe(key: ByteString): Option[ByteString]
    Definition Classes
    RawKeyValueStorage
  5. abstract def getRawUnsafe(key: ByteString): ByteString
    Definition Classes
    RawKeyValueStorage
  6. implicit abstract def keySerde: Serde[K]
    Definition Classes
    AbstractKeyValueStorage
  7. abstract def multiGetRawUnsafe(keys: Seq[ByteString]): Seq[ByteString]
    Definition Classes
    RawKeyValueStorage
  8. abstract def putBatchRawUnsafe(f: ((ByteString, ByteString) => Unit) => Unit): Unit
    Definition Classes
    RawKeyValueStorage
  9. abstract def putRawUnsafe(key: ByteString, value: ByteString): Unit
    Definition Classes
    RawKeyValueStorage
  10. implicit abstract def valueSerde: Serde[V]
    Definition Classes
    AbstractKeyValueStorage

Concrete 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. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  7. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  8. def exists(key: K): IOResult[Boolean]
  9. def existsUnsafe(key: K): Boolean
  10. def get(key: K): IOResult[V]
  11. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  12. def getOpt(key: K): IOResult[Option[V]]
  13. def getOptUnsafe(key: K): Option[V]
  14. def getUnsafe(key: K): V
  15. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  16. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  17. def multiGetUnsafe(keys: Seq[K]): Seq[V]
  18. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  19. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  21. def put(key: K, value: V): IOResult[Unit]
  22. def putBatch(f: ((K, V) => Unit) => Unit): IOResult[Unit]
  23. def putBatchUnsafe(f: ((K, V) => Unit) => Unit): Unit
  24. def putUnsafe(key: K, value: V): Unit
  25. def remove(key: K): IOResult[Unit]
  26. def removeBatchUnsafe(keys: Seq[K]): Unit
  27. def removeUnsafe(key: K): Unit
  28. def storageKey(key: K): ByteString
    Attributes
    protected
  29. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  30. def toString(): String
    Definition Classes
    AnyRef → Any
  31. def unit: Unit
    Definition Classes
    KeyValueStorageMutableKV
  32. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  33. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  34. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

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

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