t

org.alephium.io

KeyValueStorage

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

Linear Supertypes
MutableKV[K, V, Unit], ReadableKV[K, V], RawKeyValueStorage, AbstractKeyValueStorage[K, V], AnyRef, Any
Known Subclasses
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 deleteRawUnsafe(key: ByteString): Unit
    Definition Classes
    RawKeyValueStorage
  2. abstract def existsRawUnsafe(key: ByteString): Boolean
    Definition Classes
    RawKeyValueStorage
  3. abstract def getOptRawUnsafe(key: ByteString): Option[ByteString]
    Definition Classes
    RawKeyValueStorage
  4. abstract def getRawUnsafe(key: ByteString): ByteString
    Definition Classes
    RawKeyValueStorage
  5. implicit abstract def keySerde: Serde[K]
    Definition Classes
    AbstractKeyValueStorage
  6. abstract def putBatchRawUnsafe(f: ((ByteString, ByteString) => Unit) => Unit): Unit
    Definition Classes
    RawKeyValueStorage
  7. abstract def putRawUnsafe(key: ByteString, value: ByteString): Unit
    Definition Classes
    RawKeyValueStorage
  8. 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. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  18. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  19. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @native() @HotSpotIntrinsicCandidate()
  20. def put(key: K, value: V): IOResult[Unit]
  21. def putBatch(f: ((K, V) => Unit) => Unit): IOResult[Unit]
  22. def putBatchUnsafe(f: ((K, V) => Unit) => Unit): Unit
  23. def putUnsafe(key: K, value: V): Unit
  24. def remove(key: K): IOResult[Unit]
  25. def removeUnsafe(key: K): Unit
  26. def storageKey(key: K): ByteString
    Attributes
    protected
  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. def toString(): String
    Definition Classes
    AnyRef → Any
  29. def unit: Unit
    Definition Classes
    KeyValueStorageMutableKV
  30. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  31. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  32. 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