oriented

OrientClient

sealed trait OrientClient extends AnyRef

OrientClient provides communication to OrientDB, with either a InMemory, (P)Local or Remote database.

Linear Supertypes
AnyRef, Any
Known Subclasses
Ordering
  1. Alphabetic
  2. By inheritance
Inherited
  1. OrientClient
  2. AnyRef
  3. Any
  1. Hide All
  2. Show all
Learn more about member selection
Visibility
  1. Public
  2. All

Abstract Value Members

  1. abstract def db: String

    Database name for connecting to the database.

  2. abstract def password: String

    User password for authentication.

  3. abstract def pool: Option[(Int, Int)]

    Optional connection pool parameters, tuple represents minimal to maximal connections.

  4. abstract def serverAdmin: OServerAdmin

    Creates the server admin for type of connection to OrientDB.

  5. abstract def uri: String

    Connection uri to OrientDB.

  6. abstract def user: String

    User string for authentication.

Concrete Value Members

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

    Definition Classes
    AnyRef
  2. final def !=(arg0: Any): Boolean

    Definition Classes
    Any
  3. final def ##(): Int

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

    Definition Classes
    AnyRef
  5. final def ==(arg0: Any): Boolean

    Definition Classes
    Any
  6. val C: Clients[OrientProgram]

  7. def addEdge[A, B, C](edgeModel: A, inVertex: Vertex[B], outVertex: Vertex[C])(implicit orientFormat: OrientFormat[A]): OrientIO[Edge[A]]

    Action on the client that creates an OrientIO which creates an Edge link between to vertices in the database.

  8. def addVertex[A](vertexModel: A)(implicit orientFormat: OrientFormat[A]): OrientIO[Vertex[A]]

    Action on the client that creates an OrientIO which creates a Vertex in the database.

  9. final def asInstanceOf[T0]: T0

    Definition Classes
    Any
  10. def clone(): AnyRef

    Attributes
    protected[java.lang]
    Definition Classes
    AnyRef
    Annotations
    @throws( ... )
  11. def createEdgeType[A](implicit orientFormat: OrientFormat[A]): OrientIO[EdgeType[A]]

    Action on the client that creates a OrientIO for creating an EdgeType of A.

  12. def createVertexType[A](implicit orientFormat: OrientFormat[A]): OrientIO[VertexType[A]]

    Action on the client that creates a OrientIO for creating a VertexType of A.

  13. final def eq(arg0: AnyRef): Boolean

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

    Definition Classes
    AnyRef → Any
  15. lazy val factory: OrientGraphFactory

    Factory for creation of the Graphs.

    Factory for creation of the Graphs. Needs to be lazy for initializing in trait.

  16. def finalize(): Unit

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

    Definition Classes
    AnyRef → Any
  18. def graph: OrientGraph

    Returns a graph instances that has transactions enabled.

  19. def graphNoTransaction: OrientGraphNoTx

    Returns a graph instance that has transactions disabled.

  20. def hashCode(): Int

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

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

    Definition Classes
    AnyRef
  23. final def notify(): Unit

    Definition Classes
    AnyRef
  24. final def notifyAll(): Unit

    Definition Classes
    AnyRef
  25. def shutdown(close: Boolean = false): OrientIO[Unit]

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

    Definition Classes
    AnyRef
  27. def toString(): String

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

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

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

    Definition Classes
    AnyRef
    Annotations
    @throws( ... )

Inherited from AnyRef

Inherited from Any

Ungrouped