Class

ch.datascience.graph.scope.persistence

PersistenceLayer

Related Doc: package persistence

Permalink

abstract class PersistenceLayer extends PersistedProperties with PersistedNamedTypes

Created by johann on 11/05/17.

Linear Supertypes
Known Subclasses
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. PersistenceLayer
  2. PersistedNamedTypes
  3. PersistedProperties
  4. AnyRef
  5. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. All

Instance Constructors

  1. new PersistenceLayer()

    Permalink

Abstract Value Members

  1. abstract def fetchNamedTypeFor(typeId: NamespaceAndName): Future[Option[NamedType]]

    Permalink

    Fetches named type with specified key

    Fetches named type with specified key

    returns

    a future containing some named type if a corresponding one is found, None otherwise

    Definition Classes
    PersistedNamedTypes
  2. abstract def fetchNamedTypesFor(typeIds: Set[NamespaceAndName]): Future[Map[NamespaceAndName, NamedType]]

    Permalink

    Grouped version of fetchNamedTypeFor

    Grouped version of fetchNamedTypeFor

    If some keys are not found, they will not be part of the result map

    typeIds

    set of keys to retrieve

    returns

    map key -> named type, will not contain unknown keys

    Definition Classes
    PersistedNamedTypes
  3. abstract def fetchPropertiesFor(keys: Set[NamespaceAndName]): Future[Map[NamespaceAndName, PropertyKey]]

    Permalink

    Grouped version of getPropertyFor

    Grouped version of getPropertyFor

    If some keys are not found, they will not be part of the result map

    keys

    set of keys to retrieve

    returns

    map key -> property key, will not contain unknown keys

    Definition Classes
    PersistedProperties
  4. abstract def fetchPropertyFor(key: NamespaceAndName): Future[Option[PropertyKey]]

    Permalink

    Fetches property key with specified key

    Fetches property key with specified key

    returns

    a future containing some property key if a corresponding one is found, None otherwise

    Definition Classes
    PersistedProperties

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. final def asInstanceOf[T0]: T0

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

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

Inherited from PersistedNamedTypes

Inherited from PersistedProperties

Inherited from AnyRef

Inherited from Any

Ungrouped