Trait

eu.akkamo.persistentconfig

Storage

Related Doc: package persistentconfig

Permalink

trait Storage extends AnyRef

Generic persistent storage API

Linear Supertypes
AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. Storage
  2. AnyRef
  3. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Type Members

  1. case class Failure(th: Throwable) extends Exception with Result with Product with Serializable

    Permalink
  2. sealed trait Result extends AnyRef

    Permalink

Abstract Value Members

  1. abstract def getBoolean(key: String): Future[Option[Boolean]]

    Permalink
  2. abstract def getDouble(key: String): Future[Option[Double]]

    Permalink
  3. abstract def getDoubleList(key: String): Future[Option[List[Double]]]

    Permalink
  4. abstract def getInt(key: String): Future[Option[Int]]

    Permalink
  5. abstract def getIntList(key: String): Future[Option[List[Int]]]

    Permalink
  6. abstract def getLong(key: String): Future[Option[Long]]

    Permalink
  7. abstract def getLongList(key: String): Future[Option[List[Long]]]

    Permalink
  8. abstract def getString(key: String): Future[Option[String]]

    Permalink
  9. abstract def getStringList(key: String): Future[Option[List[String]]]

    Permalink
  10. abstract def remove(key: String): Future[Result]

    Permalink

    Remove value under key

  11. abstract def storeBoolean(key: String, value: Boolean): Future[Result]

    Permalink
  12. abstract def storeDouble(key: String, value: Double): Future[Result]

    Permalink
  13. abstract def storeDoubleList(key: String, value: List[Double]): Future[Result]

    Permalink
  14. abstract def storeInt(key: String, value: Int): Future[Result]

    Permalink
  15. abstract def storeIntList(key: String, value: List[Int]): Future[Result]

    Permalink
  16. abstract def storeLong(key: String, value: Long): Future[Result]

    Permalink
  17. abstract def storeLongList(key: String, value: List[Long]): Future[Result]

    Permalink
  18. abstract def storeString(key: String, value: String): Future[Result]

    Permalink
  19. abstract def storeStringList(key: String, value: List[String]): Future[Result]

    Permalink

Concrete Value Members

  1. final def !=(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  2. final def ##(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  4. object Ok extends Result with Product with Serializable

    Permalink
  5. final def asInstanceOf[T0]: T0

    Permalink
    Definition Classes
    Any
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. final def eq(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  8. def equals(arg0: Any): Boolean

    Permalink
    Definition Classes
    AnyRef → Any
  9. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  10. final def getClass(): Class[_]

    Permalink
    Definition Classes
    AnyRef → Any
  11. def hashCode(): Int

    Permalink
    Definition Classes
    AnyRef → Any
  12. final def isInstanceOf[T0]: Boolean

    Permalink
    Definition Classes
    Any
  13. final def ne(arg0: AnyRef): Boolean

    Permalink
    Definition Classes
    AnyRef
  14. final def notify(): Unit

    Permalink
    Definition Classes
    AnyRef
  15. final def notifyAll(): Unit

    Permalink
    Definition Classes
    AnyRef
  16. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  17. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  18. final def wait(): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  19. final def wait(arg0: Long, arg1: Int): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  20. final def wait(arg0: Long): Unit

    Permalink
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped