Class

lspace.lgraph.store

StoreManager

Related Doc: package store

Permalink

abstract class StoreManager[G <: LGraph] extends AnyRef

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

Instance Constructors

  1. new StoreManager(graph: G)

    Permalink

Abstract Value Members

  1. abstract def close(): CancelableFuture[Unit]

    Permalink

    finishes write-queue(s) and closes connection

  2. abstract def deleteEdges(edges: List[G.GEdge[_, _]]): Task[_]

    Permalink
  3. abstract def deleteNodes(nodes: List[G.GNode]): Task[_]

    Permalink
  4. abstract def deleteValues(values: List[G.GValue[_]]): Task[_]

    Permalink
  5. abstract def edgeById(id: Long): Option[G.GEdge[Any, Any]]

    Permalink
  6. abstract def edgeByIri(iri: String): Stream[G.GEdge[Any, Any]]

    Permalink
  7. abstract def edgeCount(): Long

    Permalink
  8. abstract def edges: Stream[G.GEdge[Any, Any]]

    Permalink
  9. abstract def edgesByFromId(fromId: Long): Stream[G.GEdge[Any, Any]]

    Permalink
  10. abstract def edgesByFromIdAndKey(fromId: Long, key: Property): Stream[G.GEdge[Any, Any]]

    Permalink
  11. abstract def edgesByFromIdAndKeyAndToId(fromId: Long, key: Property, toId: Long): Stream[G.GEdge[Any, Any]]

    Permalink
  12. abstract def edgesByFromIdAndToId(fromId: Long, toId: Long): Stream[G.GEdge[Any, Any]]

    Permalink
  13. abstract def edgesById(ids: List[Long]): Stream[G.GEdge[Any, Any]]

    Permalink
  14. abstract def edgesByIri(iri: List[String]): Stream[G.GEdge[Any, Any]]

    Permalink
  15. abstract def edgesByToId(toId: Long): Stream[G.GEdge[Any, Any]]

    Permalink
  16. abstract def edgesByToIdAndKey(toId: Long, key: Property): Stream[G.GEdge[Any, Any]]

    Permalink
  17. abstract def init: CancelableFuture[Unit]

    Permalink
  18. abstract def nodeById(id: Long): Option[G.GNode]

    Permalink
  19. abstract def nodeByIri(iri: String): Stream[G.GNode]

    Permalink
  20. abstract def nodeCount(): Long

    Permalink
  21. abstract def nodes: Stream[G.GNode]

    Permalink
  22. abstract def nodesById(ids: List[Long]): Stream[G.GNode]

    Permalink
  23. abstract def nodesByIri(iri: List[String]): Stream[G.GNode]

    Permalink
  24. abstract def persist: CancelableFuture[Unit]

    Permalink
  25. abstract def storeEdges(edges: List[G.GEdge[_, _]]): Task[_]

    Permalink
  26. abstract def storeNodes(nodes: List[G.GNode]): Task[_]

    Permalink
  27. abstract def storeValues(values: List[G.GValue[_]]): Task[_]

    Permalink
  28. abstract def valueById(id: Long): Option[G.GValue[Any]]

    Permalink
  29. abstract def valueByIri(iri: String): Stream[G.GValue[Any]]

    Permalink
  30. abstract def valueByValue[T](value: T, dt: DataType[T]): Stream[G.GValue[T]]

    Permalink
  31. abstract def valueCount(): Long

    Permalink
  32. abstract def values: Stream[G.GValue[Any]]

    Permalink
  33. abstract def valuesById(ids: List[Long]): Stream[G.GValue[Any]]

    Permalink
  34. abstract def valuesByIri(iri: List[String]): Stream[G.GValue[Any]]

    Permalink
  35. abstract def valuesByValue[T](values: List[(T, DataType[T])]): Stream[G.GValue[T]]

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

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

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  6. def edgeStore: EdgeStore[G]

    Permalink
  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. val graph: G

    Permalink
  12. def hashCode(): Int

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

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

    Permalink
    Definition Classes
    AnyRef
  15. def nodeStore: NodeStore[G]

    Permalink
  16. final def notify(): Unit

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

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

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

    Permalink
    Definition Classes
    AnyRef → Any
  20. def valueStore: ValueStore[G]

    Permalink
  21. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped