Class

com.outr.arango.managed

Graph

Related Doc: package managed

Permalink

class Graph extends AnyRef

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

Instance Constructors

  1. new Graph(name: String, db: String = Arango.defaultDatabase, url: URL = Arango.defaultURL, credentials: Option[Credentials] = Arango.defaultCredentials, timeout: FiniteDuration = 15.seconds)

    Permalink

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 call[T](query: Query)(implicit decoder: Decoder[T]): Future[T]

    Permalink
  6. def clone(): AnyRef

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  7. def collections: List[AbstractCollection[_]]

    Permalink
  8. def cursor: ArangoCursor

    Permalink
  9. def delete(dropCollections: Boolean = true): Future[Boolean]

    Permalink

    Deletes the graph.

    Deletes the graph.

    dropCollections

    true if the collections should also be dropped. Defaults to true.

    returns

    true if the operation completed successfully

  10. macro def edge[T <: Edge with DocumentOption](name: String, links: (String, String)*): EdgeCollection[T]

    Permalink
  11. final def eq(arg0: AnyRef): Boolean

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

    Permalink
    Definition Classes
    AnyRef → Any
  13. def execute(query: Query): Future[Boolean]

    Permalink
  14. def finalize(): Unit

    Permalink
    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( classOf[java.lang.Throwable] )
  15. def first[T](query: Query)(implicit decoder: Decoder[T]): Future[Option[T]]

    Permalink
  16. final def getClass(): Class[_]

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

    Permalink
    Definition Classes
    AnyRef → Any
  18. def init(createGraph: Boolean = true, createCollections: Boolean = true): Future[Boolean]

    Permalink

    Initializes this graph instance, database, and session creating the graph and collections if it doesn't already exist (if createGraph and createCollections is true).

    Initializes this graph instance, database, and session creating the graph and collections if it doesn't already exist (if createGraph and createCollections is true). This can be invoked multiple times without risk of duplicate functionality.

    createGraph

    automatically creates the graph if it doesn't already exist if set to true. Defaults to true.

    createCollections

    automatically creates the collections if they don't already exist if set to true. Defaults to true.

    returns

    true if the operation completed without error

  19. val initialized: Channel[Boolean]

    Permalink
  20. final def isInstanceOf[T0]: Boolean

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

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

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

    Permalink
    Definition Classes
    AnyRef
  24. def polymorphic[T <: PolymorphicDocumentOption](name: String, types: PolymorphicType[T]*): PolymorphicVertexCollection[T]

    Permalink
  25. macro def polymorphic2[T <: PolymorphicDocumentOption, P1 <: T, P2 <: T](name: String): PolymorphicVertexCollection[T]

    Permalink
  26. macro def polymorphic3[T <: PolymorphicDocumentOption, P1 <: T, P2 <: T, P3 <: T](name: String): PolymorphicVertexCollection[T]

    Permalink
  27. macro def polymorphic4[T <: PolymorphicDocumentOption, P1 <: T, P2 <: T, P3 <: T, P4 <: T](name: String): PolymorphicVertexCollection[T]

    Permalink
  28. macro def polymorphicType[T <: PolymorphicDocumentOption, P <: T](value: String): PolymorphicType[T]

    Permalink
  29. lazy val realTime: RealTime

    Permalink
  30. final def synchronized[T0](arg0: ⇒ T0): T0

    Permalink
    Definition Classes
    AnyRef
  31. def synchronous[T](future: Future[T], timeout: FiniteDuration = 10.seconds): T

    Permalink
  32. def toString(): String

    Permalink
    Definition Classes
    AnyRef → Any
  33. macro def vertex[T <: DocumentOption](name: String): VertexCollection[T]

    Permalink
  34. final def wait(): Unit

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

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

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

Inherited from AnyRef

Inherited from Any

Ungrouped